From: vanjeff Date: Wed, 19 Mar 2008 05:49:56 +0000 (+0000) Subject: add some error check and return. X-Git-Tag: edk2-stable201903~21286 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=695f7e9856bc478054e317c8b9b1e12e6cbf0693 add some error check and return. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4912 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/IntelFrameworkModulePkg/Library/GraphicsLib/Graphics.c b/IntelFrameworkModulePkg/Library/GraphicsLib/Graphics.c index 283d9be358..ea8c7d5157 100644 --- a/IntelFrameworkModulePkg/Library/GraphicsLib/Graphics.c +++ b/IntelFrameworkModulePkg/Library/GraphicsLib/Graphics.c @@ -415,6 +415,8 @@ Returns: if (EFI_ERROR (Status)) { return EFI_UNSUPPORTED; } + } else { + return EFI_UNSUPPORTED; } Instance = 0; diff --git a/MdeModulePkg/Library/GraphicsLib/Graphics.c b/MdeModulePkg/Library/GraphicsLib/Graphics.c index e944217028..cccbc6b06f 100644 --- a/MdeModulePkg/Library/GraphicsLib/Graphics.c +++ b/MdeModulePkg/Library/GraphicsLib/Graphics.c @@ -470,6 +470,8 @@ Returns: if (EFI_ERROR (Status)) { return EFI_UNSUPPORTED; } + } else { + return EFI_UNSUPPORTED; } Instance = 0; @@ -607,6 +609,8 @@ Returns: Height, Width * sizeof (EFI_UGA_PIXEL) ); + } else { + Status = EFI_UNSUPPORTED; } } diff --git a/MdeModulePkg/Universal/BdsDxe/MemoryTest.c b/MdeModulePkg/Universal/BdsDxe/MemoryTest.c index 002b8302c3..fe167e0199 100644 --- a/MdeModulePkg/Universal/BdsDxe/MemoryTest.c +++ b/MdeModulePkg/Universal/BdsDxe/MemoryTest.c @@ -152,6 +152,8 @@ Returns: SizeOfY - (PosY - GLYPH_HEIGHT - 1), SizeOfX * sizeof (EFI_UGA_PIXEL) ); + } else { + return EFI_UNSUPPORTED; } } // @@ -185,6 +187,8 @@ Returns: BlockHeight, (BlockWidth) * sizeof (EFI_UGA_PIXEL) ); + } else { + return EFI_UNSUPPORTED; } } diff --git a/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c b/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c index 48c5c1bbed..2cf2f3e64d 100644 --- a/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c +++ b/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c @@ -424,6 +424,9 @@ GraphicsConsoleControllerDriverStart ( goto Error; } } + } else { + Status = EFI_UNSUPPORTED; + goto Error; } }