Loading core/jni/android_os_SELinux.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -415,7 +415,7 @@ static jboolean native_restorecon(JNIEnv *env, jobject, jstring pathnameStr) { return false; } int ret = selinux_android_restorecon(pathname.c_str()); int ret = selinux_android_restorecon(pathname.c_str(), 0); ALOGV("restorecon(%s) => %d", pathname.c_str(), ret); return (ret == 0); } Loading Loading
core/jni/android_os_SELinux.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -415,7 +415,7 @@ static jboolean native_restorecon(JNIEnv *env, jobject, jstring pathnameStr) { return false; } int ret = selinux_android_restorecon(pathname.c_str()); int ret = selinux_android_restorecon(pathname.c_str(), 0); ALOGV("restorecon(%s) => %d", pathname.c_str(), ret); return (ret == 0); } Loading