Add comment

This commit is contained in:
Stas Degteff 2011-02-19 02:08:41 +00:00
parent 1e71076fd4
commit e3217ec9be

View File

@ -100,7 +100,7 @@ static char* strdel(const char* substr, char* str) {
if(!dest)
return NULL;
char* src = dest + strlen(substr);
strcpy(dest, src);
strcpy(dest, src); /* Source and destination overlap. This is rigth. */
return str;
}