diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:16:44 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:16:44 +0000 |
commit | 9cfb4c0390bde730011874cdd8cc62fb0a5da6ea (patch) | |
tree | c4c069321fb1c69edcbf3b7af8443db16cd3e0c4 /src | |
parent | e566c4c64cbfae1141bb8619c6f4029fedc68ad6 (diff) | |
download | mpd-9cfb4c0390bde730011874cdd8cc62fb0a5da6ea.tar.gz mpd-9cfb4c0390bde730011874cdd8cc62fb0a5da6ea.tar.xz mpd-9cfb4c0390bde730011874cdd8cc62fb0a5da6ea.zip |
decode: fix some uninitialized variable warnings
They're probably not needed, but less noise => faster debugging
git-svn-id: https://svn.musicpd.org/mpd/trunk@7302 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r-- | src/decode.c | 4 | ||||
-rw-r--r-- | src/pcm_utils.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/decode.c b/src/decode.c index 0c4503872..c5ad1c817 100644 --- a/src/decode.c +++ b/src/decode.c @@ -408,10 +408,10 @@ static void decodeParent(PlayerControl * pc, DecoderControl * dc, OutputBuffer * /** cross fading enabled for the current song? 0=must check; 1=enabled; -1=disabled */ int doCrossFade = 0; - unsigned int crossFadeChunks; + unsigned int crossFadeChunks = 0; /** the position of the next cross-faded chunk in the next song */ - int nextChunk; + int nextChunk = 0; int decodeWaitedOn = 0; static const char silence[CHUNK_SIZE]; double sizeToTime = 0.0; diff --git a/src/pcm_utils.c b/src/pcm_utils.c index 9a443962d..628c524d2 100644 --- a/src/pcm_utils.c +++ b/src/pcm_utils.c @@ -394,7 +394,7 @@ size_t pcm_convertAudioFormat(AudioFormat * inFormat, const char *inBuffer, char *outBuffer, ConvState *convState) { const char *buf; - size_t len; + size_t len = 0; size_t outSize = pcm_sizeOfConvBuffer(inFormat, inSize, outFormat); assert(outFormat->bits == 16); |