Fix checking of access() return value in EGL renderer override

This commit is contained in:
JeremyRand 2019-08-15 21:04:31 +02:00 committed by Joonas Kylmälä
parent edfaaa10cb
commit 9ad1596001
No known key found for this signature in database
GPG Key ID: 132DEBCE65522635
1 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@ static const char* getOverridePath(void) {
ALOGD("checking %s for override...",
data_override_path.string());
if (access( data_override_path.string(), R_OK ) ) {
if (!access( data_override_path.string(), R_OK ) ) {
ALOGD("override found: %s", data_override_path.string());
return data_override_path.string();
}
@ -169,7 +169,7 @@ static const char* getOverridePath(void) {
ALOGD("checking %s for override...",
system_override_path.string());
if (access( system_override_path.string(), R_OK ) ) {
if (!access( system_override_path.string(), R_OK ) ) {
ALOGD("override found: %s", system_override_path.string());
return system_override_path.string();
}