diff options
author | Simon Howard | 2014-03-29 20:08:31 -0400 |
---|---|---|
committer | Simon Howard | 2014-03-29 20:08:31 -0400 |
commit | 62b5c602821cee8ac703ebe6362f3e1fc6d9ad3c (patch) | |
tree | 3703b069d3d200e8c6edac3c99de00da34cbc7f3 /src/setup | |
parent | e85edb9e6fcdc77d69d1b4d9f14f705a03e753e1 (diff) | |
download | chocolate-doom-62b5c602821cee8ac703ebe6362f3e1fc6d9ad3c.tar.gz chocolate-doom-62b5c602821cee8ac703ebe6362f3e1fc6d9ad3c.tar.bz2 chocolate-doom-62b5c602821cee8ac703ebe6362f3e1fc6d9ad3c.zip |
misc: Add string utility functions.
It's more readable to write "M_StringEndsWith(..." than doing a bunch of
pointer arithmetic, and this is a common pattern. Also add
M_StringStartsWith, M_StringJoin and M_StringCopy. The latter is a
safe alternative for strcpy() that works the same as OpenBSD's
strlcpy(). Use these functions in a few places where it makes sense.
Diffstat (limited to 'src/setup')
-rw-r--r-- | src/setup/mainmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/setup/mainmenu.c b/src/setup/mainmenu.c index 8e5ebdad..81688b29 100644 --- a/src/setup/mainmenu.c +++ b/src/setup/mainmenu.c @@ -329,7 +329,7 @@ static void SetWindowTitle(void) TXT_SetDesktopTitle(title); - Z_Free(title); + free(title); } // Initialize the textscreen library. |