diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-02-25 18:46:41 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-02-25 18:46:41 +0000 |
commit | e4f265b2fce5609d4862cd2d42fd58adf7341299 (patch) | |
tree | 1ce9c5b2589f06d2138a060802124cb19b458881 /src/player.c | |
parent | ca3068d411dc60bf6de2eb88f73c6f91486e8260 (diff) | |
download | mpd-e4f265b2fce5609d4862cd2d42fd58adf7341299.tar.gz mpd-e4f265b2fce5609d4862cd2d42fd58adf7341299.tar.xz mpd-e4f265b2fce5609d4862cd2d42fd58adf7341299.zip |
be more careful with string manipulations, use strncpy as much as possible
git-svn-id: https://svn.musicpd.org/mpd/trunk@56 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/player.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player.c b/src/player.c index 5cb209334..3b3bf250c 100644 --- a/src/player.c +++ b/src/player.c @@ -140,7 +140,7 @@ int playerPlay(FILE * fp, char * utf8file) { { struct stat st; if(stat(rmp2amp(utf8ToFsCharset(utf8file)),&st)<0) { - strcpy(pc->erroredFile,pc->file); + strncpy(pc->erroredFile,pc->file,MAXPATHLEN); pc->error = PLAYER_ERROR_FILENOTFOUND; return 0; } @@ -160,7 +160,7 @@ int playerPlay(FILE * fp, char * utf8file) { else if(isWave(utf8file)) pc->decodeType = DECODE_TYPE_AUDIOFILE; #endif else { - strcpy(pc->erroredFile,pc->file); + strncpy(pc->erroredFile,pc->file,MAXPATHLEN); pc->error = PLAYER_ERROR_UNKTYPE; return 0; } |