Merge pull request #125 from jkent/master

fix a stupid use of strcpy()
This commit is contained in:
Zack Middleton 2015-06-18 18:01:48 -05:00
commit ea9161f4a3

View file

@ -1256,7 +1256,7 @@ void Info_RemoveKey_Big( char *s, const char *key ) {
if (!strcmp (key, pkey) )
{
strcpy (start, s); // remove this part
memmove(start, s, strlen(s) + 1); // remove this part
return;
}