From 5c48c3fd2b5a229e125455b3f5c23f4773b0191e Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Fri, 15 Oct 2010 13:54:23 +0000 Subject: GOB: Remove strncpy0() Replacing it (and some strncpy + manual terminating) with Common::strlcpy() svn-id: r53490 --- engines/gob/goblin.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'engines/gob/goblin.cpp') diff --git a/engines/gob/goblin.cpp b/engines/gob/goblin.cpp index ee2b4f52c9..f2f561c642 100644 --- a/engines/gob/goblin.cpp +++ b/engines/gob/goblin.cpp @@ -23,6 +23,8 @@ * */ +#include "common/str.h" + #include "gob/gob.h" #include "gob/goblin.h" #include "gob/helper.h" @@ -1186,7 +1188,7 @@ void Goblin::loadObjects(const char *source) { freeObjects(); initList(); - strncpy0(_vm->_map->_sourceFile, source, 14); + Common::strlcpy(_vm->_map->_sourceFile, source, 15); _vm->_map->_sourceFile[strlen(_vm->_map->_sourceFile) - 4] = 0; _vm->_map->loadMapObjects(source); -- cgit v1.2.3