diff options
author | hwspeedy <ns@bigbear.dk> | 2024-05-14 12:29:45 +0200 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-05-14 12:29:45 +0200 |
commit | 65b5768528d9a97dbca46f843a628f29331509b3 (patch) | |
tree | c44a79d7a56c4709c70378f32be4078b44b489ce | |
parent | ecbcdea0fba5f391ff3ac24f813073ed3832eb65 (diff) |
FIX Possible variable missing initialize before use
-rw-r--r-- | modules/devices/spd-decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/devices/spd-decode.c b/modules/devices/spd-decode.c index 7cfc688c..879b99fd 100644 --- a/modules/devices/spd-decode.c +++ b/modules/devices/spd-decode.c @@ -471,7 +471,7 @@ static void decode_ddr2_module_timings(float ctime, unsigned char *bytes, float } static gboolean decode_ddr2_module_ctime_for_casx(int casx_minus, unsigned char *bytes, float *ctime, float *tcl){ - int highest_cas, i, bytei; + int highest_cas = 0, i, bytei; float ctimev = 0; switch (casx_minus){ |