From: Andre Noll Date: Mon, 15 Aug 2011 18:15:05 +0000 (+0200) Subject: ogg_afh: Kill dead store. X-Git-Tag: v0.4.9~18^2~2 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=d740f34f84a830ff18c845103731a1a5a52fc1af;hp=6f24630aa6d5ea343f0f0626b356d03fa36f890e ogg_afh: Kill dead store. ogg_afh.c:108:3: warning: Value stored to 'ret' is never read ret = -E_OGG_PACKET_IN; ^ ~~~~~~~~~~~~~~~~ --- diff --git a/ogg_afh.c b/ogg_afh.c index 46c7b084..08023458 100644 --- a/ogg_afh.c +++ b/ogg_afh.c @@ -105,7 +105,6 @@ static int vorbis_get_header_callback(ogg_packet *packet, int packet_num, return 0; if (packet_num == 0) { ogg_stream_init(&vghd->os, serial); - ret = -E_OGG_PACKET_IN; ret = ogg_stream_packetin(&vghd->os, packet); if (ret < 0) goto out;