Commit 1ccf4973 authored by Richard Levitte's avatar Richard Levitte
Browse files

p_get_params() [test/p_test.c]: clear the OSSL_PARAM buffers for every test

parent b6a07f67
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -55,10 +55,10 @@ static int p_get_params(void *vprov, const OSSL_PARAM params[])

    for (; ok && p->key != NULL; p++) {
        if (strcmp(p->key, "greeting") == 0) {
            static char *opensslv = NULL;
            static char *provname = NULL;
            static char *greeting = NULL;
            static OSSL_PARAM counter_request[] = {
            static char *opensslv;
            static char *provname;
            static char *greeting;
            static const OSSL_PARAM counter_request[] = {
                /* Known libcrypto provided parameters */
                { "openssl-version", OSSL_PARAM_UTF8_PTR,
                  &opensslv, sizeof(&opensslv), NULL },
@@ -74,6 +74,8 @@ static int p_get_params(void *vprov, const OSSL_PARAM params[])
            char buf[256];
            size_t buf_l;

            opensslv = provname = greeting = NULL;

            if (c_get_params(prov, counter_request)) {
                if (greeting) {
                    strcpy(buf, greeting);