lib/hand: missing va_end() in LibReinstallProtocolInterfaces()

For each va_start() there must be a call to va_end().

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
Heinrich Schuchardt 2021-06-21 21:56:11 +00:00
parent 9e7e6822b7
commit 70402aa91d

View file

@ -610,6 +610,7 @@ LibReinstallProtocolInterfaces (
Index += 1;
}
va_end (args);
//
// If there was an error, undo all the interfaces that were
@ -627,7 +628,8 @@ LibReinstallProtocolInterfaces (
uefi_call_wrapper(BS->ReinstallProtocolInterface, 4, Handle, Protocol, NewInterface, OldInterface);
Index -= 1;
}
}
va_end (args);
}
//