summaryrefslogtreecommitdiff
path: root/src/deh_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/deh_io.c')
-rw-r--r--src/deh_io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/deh_io.c b/src/deh_io.c
index 83609068..37fc0a15 100644
--- a/src/deh_io.c
+++ b/src/deh_io.c
@@ -30,6 +30,7 @@
#include <string.h>
#include "i_system.h"
+#include "m_misc.h"
#include "w_wad.h"
#include "z_zone.h"
@@ -127,8 +128,7 @@ deh_context_t *DEH_OpenLump(int lumpnum)
context->input_buffer_pos = 0;
context->filename = malloc(9);
- strncpy(context->filename, lumpinfo[lumpnum].name, 8);
- context->filename[8] = '\0';
+ M_StringCopy(context->filename, lumpinfo[lumpnum].name, 9);
return context;
}