Skip to content

Commit 06161b2

Browse files
authored
Merge pull request #256 from padelsbach/wp_ecx_compile_issue
Fix uninitialized variable issue specific to Debian build
2 parents c0bc7d9 + 54cea6a commit 06161b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp_ecx_kmgmt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1933,7 +1933,7 @@ static int wp_ecx_decode(wp_EcxEncDecCtx* ctx, OSSL_CORE_BIO* cBio,
19331933
unsigned char* data = NULL;
19341934
word32 len = 0;
19351935
word32 idx = 0;
1936-
wp_Ecx* ecx;
1936+
wp_Ecx* ecx = NULL;
19371937
const char* dataType = NULL;
19381938

19391939
if (!wolfssl_prov_is_running()) {

0 commit comments

Comments
 (0)