diff options
author | Stefan Holst <holstsn@users.sourceforge.net> | 2003-03-19 23:22:17 +0000 |
---|---|---|
committer | Stefan Holst <holstsn@users.sourceforge.net> | 2003-03-19 23:22:17 +0000 |
commit | 665db3bdc2c11fde728f303bb24947bb0f6c0ebd (patch) | |
tree | 9c6d0eea739e9bae1c02b572ff22c41eeeeeacd9 | |
parent | ac4ea235062b05c8e46de6bc67392628b107e708 (diff) | |
download | xine-lib-665db3bdc2c11fde728f303bb24947bb0f6c0ebd.tar.gz xine-lib-665db3bdc2c11fde728f303bb24947bb0f6c0ebd.tar.bz2 |
removing a segfault ;)
CVS patchset: 4452
CVS date: 2003/03/19 23:22:17
-rw-r--r-- | src/demuxers/demux_mpgaudio.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c index c3f717870..fd14e6c95 100644 --- a/src/demuxers/demux_mpgaudio.c +++ b/src/demuxers/demux_mpgaudio.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_mpgaudio.c,v 1.98 2003/03/18 16:29:44 f1rmb Exp $ + * $Id: demux_mpgaudio.c,v 1.99 2003/03/19 23:22:17 holstsn Exp $ * * demultiplexer for mpeg audio (i.e. mp3) streams * @@ -187,7 +187,6 @@ demux_mpgaudio_read_buffer_header (input_plugin_t *input) count = input->read(input, buf, SNIFF_BUFFER_LENGTH); if (count < SNIFF_BUFFER_LENGTH) { - free (buf); return NULL; } } else if ((input->get_capabilities(input) & INPUT_CAP_PREVIEW) != 0) { |