forked from Mirrorlandia_minetest/minetest
Fix RUN_IN_PLACE broken due to invalid usage of assert
This commit is contained in:
parent
ced6d20295
commit
9da99efca2
@ -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, '/');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user