ref: 565a1f08566520147a5abff5744dbcc256e5030c
parent: d9c4297093eaf994e16e62381636ba3121713c43
author: Simon Howard <[email protected]>
date: Mon Mar 31 18:34:49 EDT 2014
strife: Add missing NULL to M_StringJoin call.
--- a/src/strife/p_saveg.c
+++ b/src/strife/p_saveg.c
@@ -58,7 +58,7 @@
if (filename == NULL)
{
- filename = M_StringJoin(savegamedir, "temp.dsg");
+ filename = M_StringJoin(savegamedir, "temp.dsg", NULL);
}
return filename;