JNI/JSSE: fix VS warning about uninitialized local pointer variable
parent
94281c3150
commit
336af4daf9
|
@ -1421,7 +1421,7 @@ JNIEXPORT jint JNICALL Java_com_wolfssl_WolfSSLSession_read__JLjava_nio_ByteBuff
|
||||||
jint position;
|
jint position;
|
||||||
jint limit;
|
jint limit;
|
||||||
jboolean hasArray;
|
jboolean hasArray;
|
||||||
jbyteArray bufArr;
|
jbyteArray bufArr = NULL;
|
||||||
|
|
||||||
(void)jcl;
|
(void)jcl;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue