summaryrefslogtreecommitdiff
path: root/src/strife/wi_stuff.c
diff options
context:
space:
mode:
authorSimon Howard2014-03-29 21:49:57 -0400
committerSimon Howard2014-03-29 21:49:57 -0400
commiteb3a4033c7d6f1d5e042edd5f416bbc257e40975 (patch)
tree9b6871a887655f88b4dbb1c5412469924604fb7e /src/strife/wi_stuff.c
parent1e5e0a565cbcaf4f8aafa5a12c84e987aa822e13 (diff)
downloadchocolate-doom-eb3a4033c7d6f1d5e042edd5f416bbc257e40975.tar.gz
chocolate-doom-eb3a4033c7d6f1d5e042edd5f416bbc257e40975.tar.bz2
chocolate-doom-eb3a4033c7d6f1d5e042edd5f416bbc257e40975.zip
strife: Eliminate use of unsafe string functions.
Eliminate use of strcpy, strcat, strncpy, and use the new safe alternatives.
Diffstat (limited to 'src/strife/wi_stuff.c')
-rw-r--r--src/strife/wi_stuff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strife/wi_stuff.c b/src/strife/wi_stuff.c
index f322e31f..8521db9f 100644
--- a/src/strife/wi_stuff.c
+++ b/src/strife/wi_stuff.c
@@ -1697,12 +1697,12 @@ static void WI_loadUnloadData(load_callback_t callback)
if (gamemode == commercial)
{
- strncpy(name, DEH_String("INTERPIC"), 9);
+ M_StringCopy(name, DEH_String("INTERPIC"), sizeof(name));
name[8] = '\0';
}
else if (gamemode == retail && wbs->epsd == 3)
{
- strncpy(name, DEH_String("INTERPIC"), 9);
+ M_StringCopy(name, DEH_String("INTERPIC"), sizeof(name));
name[8] = '\0';
}
else