From a70c0fd846dc339135c0b5607983d20d891dc149 Mon Sep 17 00:00:00 2001 From: qwang12 Date: Wed, 17 Sep 2008 02:30:24 +0000 Subject: [PATCH] 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 --- MdeModulePkg/Core/Dxe/Hand/Handle.c | 5 +++++ 1 file changed, 5 insertions(+) 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; -- 2.39.2