eliminated duplicate initialization
Local variables which are never read before the first assignment don't need initialization. Saves a few bytes of text. Also don't reset variables which are never read until function return. git-svn-id: https://svn.musicpd.org/mpd/trunk@7199 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:

committed by
Eric Wong

parent
54b544c2f4
commit
c5b524e376
@@ -61,7 +61,7 @@ typedef struct _OggCallbackData {
|
||||
|
||||
static size_t ogg_read_cb(void *ptr, size_t size, size_t nmemb, void *vdata)
|
||||
{
|
||||
size_t ret = 0;
|
||||
size_t ret;
|
||||
OggCallbackData *data = (OggCallbackData *) vdata;
|
||||
|
||||
while (1) {
|
||||
@@ -352,7 +352,7 @@ static int oggvorbis_decode(OutputBuffer * cb, DecoderControl * dc,
|
||||
|
||||
static MpdTag *oggvorbis_TagDup(char *file)
|
||||
{
|
||||
MpdTag *ret = NULL;
|
||||
MpdTag *ret;
|
||||
FILE *fp;
|
||||
OggVorbis_File vf;
|
||||
|
||||
|
Reference in New Issue
Block a user