summaryrefslogtreecommitdiffstats
path: root/gst/flv
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-12-11 11:54:43 +0000
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-05-12 21:20:53 +0200
commit71e48aa5d7a5b0ec98da379d48dc6543ae672146 (patch)
treebbe95c64b8924ae818c856a3a8f6138159c09914 /gst/flv
parent98afcdf05dd306a7816466bb59ee2296a0490378 (diff)
[MOVED FROM BAD 18/57] gst/flv/gstflvparse.c: Don't strdup (and thus leak) codec name strings when passing them to gst_tag_list_add().
Original commit message from CVS: * gst/flv/gstflvparse.c: (gst_flv_parse_tag_audio), (gst_flv_parse_tag_video): Don't strdup (and thus leak) codec name strings when passing them to gst_tag_list_add().
Diffstat (limited to 'gst/flv')
-rw-r--r--gst/flv/gstflvparse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/flv/gstflvparse.c b/gst/flv/gstflvparse.c
index f7954665..a29e873b 100644
--- a/gst/flv/gstflvparse.c
+++ b/gst/flv/gstflvparse.c
@@ -494,7 +494,7 @@ gst_flv_parse_tag_audio (GstFLVDemux * demux, const guint8 * data,
if (demux->taglist == NULL)
demux->taglist = gst_tag_list_new ();
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
- GST_TAG_AUDIO_CODEC, g_strdup (codec_name), NULL);
+ GST_TAG_AUDIO_CODEC, codec_name, NULL);
}
GST_DEBUG_OBJECT (demux, "created audio pad with caps %" GST_PTR_FORMAT,
@@ -577,7 +577,7 @@ gst_flv_parse_tag_audio (GstFLVDemux * demux, const guint8 * data,
if (demux->taglist == NULL)
demux->taglist = gst_tag_list_new ();
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
- GST_TAG_AUDIO_CODEC, g_strdup (codec_name), NULL);
+ GST_TAG_AUDIO_CODEC, codec_name, NULL);
}
gst_caps_unref (caps);
@@ -767,7 +767,7 @@ gst_flv_parse_tag_video (GstFLVDemux * demux, const guint8 * data,
if (demux->taglist == NULL)
demux->taglist = gst_tag_list_new ();
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
- GST_TAG_VIDEO_CODEC, g_strdup (codec_name), NULL);
+ GST_TAG_VIDEO_CODEC, codec_name, NULL);
}
/* Store the caps we have set */
@@ -839,7 +839,7 @@ gst_flv_parse_tag_video (GstFLVDemux * demux, const guint8 * data,
if (demux->taglist == NULL)
demux->taglist = gst_tag_list_new ();
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
- GST_TAG_VIDEO_CODEC, g_strdup (codec_name), NULL);
+ GST_TAG_VIDEO_CODEC, codec_name, NULL);
}
/* Store the caps we have set */