JNI/JSSE: fix VS warning about uninitialized local pointer variable

pull/246/head
Chris Conlon 2025-01-20 15:49:18 -07:00
parent 94281c3150
commit 336af4daf9
1 changed files with 1 additions and 1 deletions

View File

@ -1421,7 +1421,7 @@ JNIEXPORT jint JNICALL Java_com_wolfssl_WolfSSLSession_read__JLjava_nio_ByteBuff
jint position;
jint limit;
jboolean hasArray;
jbyteArray bufArr;
jbyteArray bufArr = NULL;
(void)jcl;