mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 02:15:31 +00:00
gst/audioconvert/gstaudioconvert.c: fix memleak
Original commit message from CVS: * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int): fix memleak
This commit is contained in:
parent
c17acf4260
commit
1cd4212d70
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-04-25 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
|
* gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
|
||||||
|
fix memleak
|
||||||
|
|
||||||
2004-04-23 Benjamin Otte <otte@gnome.org>
|
2004-04-23 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
|
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
|
||||||
|
|
|
@ -445,6 +445,8 @@ _fixate_caps_to_int (GstCaps ** caps, const gchar * field, gint value)
|
||||||
} else {
|
} else {
|
||||||
gst_caps_free (intersection);
|
gst_caps_free (intersection);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
gst_caps_free (intersection);
|
||||||
}
|
}
|
||||||
gst_caps_free (try);
|
gst_caps_free (try);
|
||||||
for (i = 0; i < gst_caps_get_size (*caps); i++) {
|
for (i = 0; i < gst_caps_get_size (*caps); i++) {
|
||||||
|
|
Loading…
Reference in a new issue