Commit 1db64784 authored by Max Kellermann's avatar Max Kellermann Committed by Eric Wong

fix several errors/warnings which only appear with -O3

git-svn-id: https://svn.musicpd.org/mpd/trunk@7333 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent a25a7624
......@@ -342,6 +342,8 @@ static void * decoder_task(void *arg)
decoder_sleep(dc);
}
}
return NULL;
}
void decoderInit(DecoderControl * dc)
......
......@@ -721,7 +721,7 @@ int inputStream_httpSeek(InputStream * inStream, long offset, int whence)
static void parseIcyMetadata(InputStream * inStream, char *metadata, int size)
{
char *r;
char *r = NULL;
char *s;
char *temp = xmalloc(size + 1);
memcpy(temp, metadata, size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment