From c27cdc62c5f3beb0ed88ef0d9bfbd2848254a5a6 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Tue, 20 Aug 2019 15:36:36 +0200 Subject: [docs/examples/curlx]: "-p12 arg" is required too With MSVC's `/RTCu` option and no `-p12 arg` on the cmd-line, the same fatal dialogue box is triggered when ```c p12bio = BIO_new_file(p.p12file, "rb"); ``` is called. --- docs/examples/curlx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/curlx.c b/docs/examples/curlx.c index b4f747cf3..830207970 100644 --- a/docs/examples/curlx.c +++ b/docs/examples/curlx.c @@ -294,7 +294,7 @@ int main(int argc, char **argv) binaryptr = malloc(tabLength); - p.verbose = 0; + memset(&p, '\0', sizeof(p)); p.errorbio = BIO_new_fp(stderr, BIO_NOCLOSE); curl_global_init(CURL_GLOBAL_DEFAULT); @@ -372,7 +372,7 @@ int main(int argc, char **argv) args++; } - if(mimetype == NULL || mimetypeaccept == NULL) + if(mimetype == NULL || mimetypeaccept == NULL || p.p12file == NULL) badarg = 1; if(badarg) { -- cgit v1.2.1