From: Hao Wu Date: Thu, 22 Sep 2016 01:47:58 +0000 (+0800) Subject: BaseTools/TianoCompress: Initialize local variables before being used X-Git-Tag: edk2-stable201903~5340 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=10bcabc6be01aa72584610844d58c9e041952ca2 BaseTools/TianoCompress: Initialize local variables before being used Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu Reviewed-by: Liming Gao --- diff --git a/BaseTools/Source/C/TianoCompress/TianoCompress.c b/BaseTools/Source/C/TianoCompress/TianoCompress.c index 57253cca8f..b994d933eb 100644 --- a/BaseTools/Source/C/TianoCompress/TianoCompress.c +++ b/BaseTools/Source/C/TianoCompress/TianoCompress.c @@ -2153,7 +2153,7 @@ Returns: UINT16 Start[18]; UINT16 *Pointer; UINT16 Index3; - volatile UINT16 Index; + UINT16 Index; UINT16 Len; UINT16 Char; UINT16 JuBits; @@ -2163,7 +2163,7 @@ Returns: UINT16 WordOfStart; UINT16 WordOfCount; - for (Index = 1; Index <= 16; Index++) { + for (Index = 0; Index <= 16; Index++) { Count[Index] = 0; } @@ -2171,6 +2171,7 @@ Returns: Count[BitLen[Index]]++; } + Start[0] = 0; Start[1] = 0; for (Index = 1; Index <= 16; Index++) { @@ -2188,6 +2189,7 @@ Returns: JuBits = (UINT16) (16 - TableBits); + Weight[0] = 0; for (Index = 1; Index <= TableBits; Index++) { Start[Index] >>= JuBits; Weight[Index] = (UINT16) (1U << (TableBits - Index));