The changes made in d2e363d broke the line 2131 of utils.h file: return (name != NULL). It was comparing the literal address of const char* gEmpty = "" with NULL, causing the function static bool exists(const char *name) to always return true.
This problem where files could not be open is referred in issue #470.
The changes made in d2e363d broke the line 2131 of utils.h file:
return (name != NULL)
. It was comparing the literal address ofconst char* gEmpty = ""
with NULL, causing the functionstatic bool exists(const char *name)
to always return true.This problem where files could not be open is referred in issue #470.