diff --git a/CHANGELOG b/CHANGELOG index b929dc0..85c82d7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,7 @@ * CHANGELOG. */ +10302004 - Fixed a strcpy that should have been a strcat. (thanks, Tolga!) 10062004 - Removed profiling code from physfs.c. 09292004 - Every API that can return a list of strings can now use a callback mechanism if the application wants to do it's own diff --git a/CREDITS b/CREDITS index 9211926..b0e8402 100644 --- a/CREDITS +++ b/CREDITS @@ -67,6 +67,9 @@ MVL archiver, MIX archiver, Sebastian Steinhauer +Bug fixes: + Tolga Dalman + Other stuff: Your name here! Patches go to icculus@clutteredmind.org ... diff --git a/physfs.c b/physfs.c index 7fe6038..25749b9 100644 --- a/physfs.c +++ b/physfs.c @@ -1119,7 +1119,7 @@ char * __PHYSFS_convertToDependent(const char *prepend, if (append) { strcat(str, dirsep); - strcpy(str, append); + strcat(str, append); } /* if */ return(str);