Correctly initialize variable.

This commit is contained in:
Matthieu Gautier 2019-02-19 13:30:11 +01:00
parent a7a0798f99
commit af9734c87f
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ Java_org_kiwix_kiwixlib_JNIKiwixReader_getId(JNIEnv* env, jobject obj)
JNIEXPORT jint JNICALL
Java_org_kiwix_kiwixlib_JNIKiwixReader_getFileSize(JNIEnv* env, jobject obj)
{
jint size;
jint size = 0;
try {
int cSize = READER->getFileSize();