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
This commit is contained in:
qwang12 2008-09-17 02:30:24 +00:00
parent 46fee0d7b6
commit a70c0fd846
1 changed files with 5 additions and 0 deletions

View File

@ -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;