summaryrefslogtreecommitdiff
path: root/Cryptlib/OpenSSL/crypto/err
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2021-03-11 16:48:44 -0500
committerJavier Martinez Canillas <javier@dowhile0.org>2021-03-12 10:15:01 +0100
commit4457d79ce0ea638e7732f5529bf13849e290940d (patch)
tree5b931ef8fb3f2a641bc2732eb7821022cc897386 /Cryptlib/OpenSSL/crypto/err
parent3c00db33e53d0cab3b701c1569a79c64878f202d (diff)
downloadefi-boot-shim-4457d79ce0ea638e7732f5529bf13849e290940d.tar.gz
efi-boot-shim-4457d79ce0ea638e7732f5529bf13849e290940d.zip
More va_* work
Be much more explicit about exactly which va_* stuff comes from which ABI in both shim and gnu-efi. This fixes the problem where we see: | (null):0:(null)() v->name:"(null)" v->rtname:"(null)" | (null):0:(null)() v->data_size:0 v->data:0x0 and similar messages where everything is NULL. Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'Cryptlib/OpenSSL/crypto/err')
-rw-r--r--Cryptlib/OpenSSL/crypto/err/err.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Cryptlib/OpenSSL/crypto/err/err.c b/Cryptlib/OpenSSL/crypto/err/err.c
index d0752adf..e2251454 100644
--- a/Cryptlib/OpenSSL/crypto/err/err.c
+++ b/Cryptlib/OpenSSL/crypto/err/err.c
@@ -1077,13 +1077,13 @@ void ERR_set_error_data(char *data, int flags)
void EFIAPI ERR_add_error_data(int num, ...)
{
- va_list args;
- va_start(args, num);
+ ms_va_list args;
+ ms_va_start(args, num);
ERR_add_error_vdata(num, args);
- va_end(args);
+ ms_va_end(args);
}
-void EFIAPI ERR_add_error_vdata(int num, va_list args)
+void EFIAPI ERR_add_error_vdata(int num, ms_va_list args)
{
int i, n, s;
char *str, *p, *a;
@@ -1096,7 +1096,7 @@ void EFIAPI ERR_add_error_vdata(int num, va_list args)
n = 0;
for (i = 0; i < num; i++) {
- a = va_arg(args, char *);
+ a = ms_va_arg(args, char *);
/* ignore NULLs, thanks to Bob Beck <beck@obtuse.com> */
if (a != NULL) {
n += strlen(a);