Skip to content

Commit a21b5f3

Browse files
committed
fix crash on startup if ReaPack's filename is renamed
Fixes #51
1 parent d551e25 commit a21b5f3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/filesystem.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,8 @@ Path FS::canonical(const Path &path)
203203
return path;
204204
#else
205205
char *resolved = realpath(path.join().c_str(), nullptr);
206+
if(!resolved)
207+
return path;
206208
Path out(resolved);
207209
free(resolved);
208210
return out;

0 commit comments

Comments
 (0)