mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-08 07:31:03 +00:00
Actually, this should be a memcpy().
We already know the exact length we just allocated, and we plan to append our own null terminator to the end of the copy, so this makes more sense.
This commit is contained in:
parent
38dc821b0a
commit
3984c7d8e3
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ SDL_GetBasePath(void)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
strcpy(retval, str);
|
||||
SDL_memcpy(retval, str, len);
|
||||
retval[len] = '/';
|
||||
retval[len+1] = '\0';
|
||||
return retval;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue