ext/faad/gstfaad.c: Don't leak GstAudioChannelPosition. Fixes #529378.

Original commit message from CVS:
* ext/faad/gstfaad.c:
Don't leak GstAudioChannelPosition. Fixes #529378.
This commit is contained in:
Stefan Kost 2008-04-22 15:07:35 +00:00
parent c64da4164b
commit e868ac2c3a
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-04-22 Stefan Kost <ensonic@users.sf.net>
* ext/faad/gstfaad.c:
Don't leak GstAudioChannelPosition. Fixes #529378.
2008-04-22 Wim Taymans <wim.taymans@collabora.co.uk>
* gst/sdp/gstsdpdemux.c: (request_pt_map):

View file

@ -443,7 +443,7 @@ static GstAudioChannelPosition *
gst_faad_chanpos_to_gst (GstFaad * faad, guchar * fpos, guint num,
gboolean * channel_map_failed)
{
GstAudioChannelPosition *pos = g_new (GstAudioChannelPosition, num);
GstAudioChannelPosition *pos;
guint n;
gboolean unknown_channel = FALSE;
@ -459,6 +459,7 @@ gst_faad_chanpos_to_gst (GstFaad * faad, guchar * fpos, guint num,
return NULL;
}
pos = g_new (GstAudioChannelPosition, num);
for (n = 0; n < num; n++) {
GST_DEBUG_OBJECT (faad, "faad channel %d as %d", n, fpos[n]);
switch (fpos[n]) {