]> 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 988b6d19d38cbc113d5abdfe23db2ab2c9883e04..9fcf6a88e94d04f9065c2980acef3b27dfd73c8b 100644 (file)
@@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 Entity::Entity()
 {
-       strcpy(name, "");
+       name[0] = 0;
        x = y = dx = dy = tx = ty = width = height = 0;
        id = 0;
        health = 0;
@@ -52,7 +52,7 @@ Entity::Entity()
 
 void Entity::setName(const char *name)
 {
-       strcpy(this->name, name);
+       strlcpy(this->name, name, sizeof this->name);
 }
 
 void Entity::setSprites(Sprite *sprite1, Sprite *sprite2, Sprite *sprite3)