mirror of https://github.com/acidanthera/audk.git
BaseTools/LzmaCompress: Fix possible uninitialized variable
Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
31c295e71a
commit
9cdda7baa0
|
@ -213,7 +213,7 @@ WRes File_GetLength(CSzFile *p, UInt64 *length)
|
||||||
{
|
{
|
||||||
#ifdef USE_WINDOWS_FILE
|
#ifdef USE_WINDOWS_FILE
|
||||||
|
|
||||||
DWORD sizeHigh;
|
DWORD sizeHigh = 0;
|
||||||
DWORD sizeLow = GetFileSize(p->handle, &sizeHigh);
|
DWORD sizeLow = GetFileSize(p->handle, &sizeHigh);
|
||||||
if (sizeLow == 0xFFFFFFFF)
|
if (sizeLow == 0xFFFFFFFF)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue