Fix RUN_IN_PLACE broken due to invalid usage of assert

master
sapier 2015-03-07 15:22:35 +01:00
parent ced6d20295
commit 9da99efca2
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ void initializePaths()
char buf[BUFSIZ];
memset(buf, 0, BUFSIZ);
// Get path to executable
assert(readlink("/proc/self/exe", buf, BUFSIZ-1) != -1);
FATAL_ERROR_IF(readlink("/proc/self/exe", buf, BUFSIZ-1) == -1, "Failed to get cwd");
pathRemoveFile(buf, '/');