From 462694763e608402817c573952bc6c056c8a4df7 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Wed, 4 Sep 2013 17:55:54 +0100 Subject: [PATCH] Bug #6021 Fix misuse of Sys_Mkdir (Joerg Dietrich) --- code/sys/sys_unix.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/code/sys/sys_unix.c b/code/sys/sys_unix.c index 6bd9854b..c2de336d 100644 --- a/code/sys/sys_unix.c +++ b/code/sys/sys_unix.c @@ -513,6 +513,7 @@ void Sys_ErrorDialog( const char *error ) const char *homepath = Cvar_VariableString( "fs_homepath" ); const char *gamedir = Cvar_VariableString( "fs_game" ); const char *fileName = "crashlog.txt"; + char *dirpath = FS_BuildOSPath( homepath, gamedir, ""); char *ospath = FS_BuildOSPath( homepath, gamedir, fileName ); Sys_Print( va( "%s\n", error ) ); @@ -522,9 +523,16 @@ void Sys_ErrorDialog( const char *error ) #endif // Make sure the write path for the crashlog exists... - if(!Sys_Mkdir(ospath)) + + if(!Sys_Mkdir(homepath)) { - Com_Printf("ERROR: couldn't create path '%s' for crash log.\n", ospath); + Com_Printf("ERROR: couldn't create path '%s' for crash log.\n", homepath); + return; + } + + if(!Sys_Mkdir(dirpath)) + { + Com_Printf("ERROR: couldn't create path '%s' for crash log.\n", dirpath); return; }