From bd25f8043a261f59083d869f33ac0ecbd67cf02f Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周二, 12 11月 2019 10:24:46 +0800 Subject: [PATCH] fix submodules --- src/library/os/os.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/library/os/os.c b/src/library/os/os.c index d38c68a..802a46d 100644 --- a/src/library/os/os.c +++ b/src/library/os/os.c @@ -19,7 +19,7 @@ FUNCTION_RETURN verifySignature(const char* stringToVerify, const char* signatureB64) { EVP_MD_CTX *mdctx = NULL; - const char *pubKey = PUBLIC_KEY; + const char pubKey[] = PUBLIC_KEY; int func_ret = 0; BIO* bio = BIO_new_mem_buf((void*) (pubKey), strlen(pubKey)); -- Gitblit v1.9.1