diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2015-11-23 00:48:46 +0000 |
---|---|---|
committer | niruiyu <niruiyu@Edk2> | 2015-11-23 00:48:46 +0000 |
commit | 8084b26e926ba3bf12b8110e7d49d3c928bb17d6 (patch) | |
tree | eb2a84238947f594fbf9e78dbe3b59a03ca09a1f /MdeModulePkg | |
parent | 3b1495156a3576992b31a77e799db207cb61d9de (diff) | |
download | edk2-platforms-8084b26e926ba3bf12b8110e7d49d3c928bb17d6.tar.xz |
MdeModulePkg/BootLogoLib: Fix GCC build failure
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18916 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Library/BootLogoLib/BootLogoLib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MdeModulePkg/Library/BootLogoLib/BootLogoLib.c b/MdeModulePkg/Library/BootLogoLib/BootLogoLib.c index f824ae13c2..7cb3bcba46 100644 --- a/MdeModulePkg/Library/BootLogoLib/BootLogoLib.c +++ b/MdeModulePkg/Library/BootLogoLib/BootLogoLib.c @@ -145,6 +145,8 @@ BootLogoEnableLogo ( NewHeight = 0;
NewWidth = 0;
Instance = 0;
+ DestX = 0;
+ DestY = 0;
while (TRUE) {
ImageData = NULL;
ImageSize = 0;
|