]> git.mxchange.org Git - quix0rs-blobwars.git/blobdiff - src/CEntity.cpp
Use strlcat() and strlcpy(), #define wrappers when these functions are not available.
[quix0rs-blobwars.git] / src / CEntity.cpp
index e1575ca62069b0a9e6cca8889ede6bbe870e5042..9fcf6a88e94d04f9065c2980acef3b27dfd73c8b 100644 (file)
@@ -52,7 +52,7 @@ Entity::Entity()
 
 void Entity::setName(const char *name)
 {
-       strncpy(this->name, name, sizeof this->name);
+       strlcpy(this->name, name, sizeof this->name);
 }
 
 void Entity::setSprites(Sprite *sprite1, Sprite *sprite2, Sprite *sprite3)