From: qwang12 Date: Wed, 17 Sep 2008 02:30:24 +0000 (+0000) Subject: Add VA_END to end the VA_START. X-Git-Tag: edk2-stable201903~20316 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=a70c0fd846dc339135c0b5607983d20d891dc149 Add VA_END to end the VA_START. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5907 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/MdeModulePkg/Core/Dxe/Hand/Handle.c b/MdeModulePkg/Core/Dxe/Hand/Handle.c index cda7d66d50..38e27c4dfd 100644 --- a/MdeModulePkg/Core/Dxe/Hand/Handle.c +++ b/MdeModulePkg/Core/Dxe/Hand/Handle.c @@ -575,6 +575,7 @@ CoreInstallMultipleProtocolInterfaces ( // Status = CoreInstallProtocolInterface (Handle, Protocol, EFI_NATIVE_INTERFACE, Interface); } + VA_END (Args); // // If there was an error, remove all the interfaces that were installed without any errors @@ -589,6 +590,8 @@ CoreInstallMultipleProtocolInterfaces ( Interface = VA_ARG (Args, VOID *); CoreUninstallProtocolInterface (*Handle, Protocol, Interface); } + VA_END (Args); + *Handle = OldHandle; } @@ -844,6 +847,7 @@ CoreUninstallMultipleProtocolInterfaces ( // Status = CoreUninstallProtocolInterface (Handle, Protocol, Interface); } + VA_END (Args); // // If there was an error, add all the interfaces that were @@ -859,6 +863,7 @@ CoreUninstallMultipleProtocolInterfaces ( Interface = VA_ARG(Args, VOID *); CoreInstallProtocolInterface (&Handle, Protocol, EFI_NATIVE_INTERFACE, Interface); } + VA_END (Args); } return Status;