diff options
| -rw-r--r-- | core/jni/android_util_Log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/jni/android_util_Log.cpp b/core/jni/android_util_Log.cpp index 2895171..536a582 100644 --- a/core/jni/android_util_Log.cpp +++ b/core/jni/android_util_Log.cpp @@ -64,7 +64,7 @@ static jboolean isLoggable(const char* tag, jint level) { char buf[PROPERTY_VALUE_MAX]; if (property_get(key.string(), buf, "") <= 0) { - return false; + buf[0] = '\0'; } int logLevel = toLevel(buf); |
