aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDebarshi Ray <debarshir@src.gnome.org>2012-03-25 19:17:53 +0800
committerDebarshi Ray <debarshir@gnome.org>2012-03-28 18:51:32 +0800
commit98724dbfa33099bba07ba8951950a14303e763cc (patch)
treec4fedaf7cae384f35e303f27822b0c06c696ce2a /src
parenta452a7cfaee6fc192c455410b4e3ea6443162ea3 (diff)
downloadgsoc2013-empathy-98724dbfa33099bba07ba8951950a14303e763cc.tar
gsoc2013-empathy-98724dbfa33099bba07ba8951950a14303e763cc.tar.gz
gsoc2013-empathy-98724dbfa33099bba07ba8951950a14303e763cc.tar.bz2
gsoc2013-empathy-98724dbfa33099bba07ba8951950a14303e763cc.tar.lz
gsoc2013-empathy-98724dbfa33099bba07ba8951950a14303e763cc.tar.xz
gsoc2013-empathy-98724dbfa33099bba07ba8951950a14303e763cc.tar.zst
gsoc2013-empathy-98724dbfa33099bba07ba8951950a14303e763cc.zip
streamed-media-window: don't leak the element name
Fixes: https://bugzilla.gnome.org/672796
Diffstat (limited to 'src')
-rw-r--r--src/empathy-streamed-media-window.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/empathy-streamed-media-window.c b/src/empathy-streamed-media-window.c
index 87887e75f..deaae10d6 100644
--- a/src/empathy-streamed-media-window.c
+++ b/src/empathy-streamed-media-window.c
@@ -2625,14 +2625,15 @@ empathy_streamed_media_window_bus_message (GstBus *bus, GstMessage *message,
GError *error = NULL;
GstElement *gst_error;
gchar *debug;
+ gchar *name;
gst_message_parse_error (message, &error, &debug);
gst_error = GST_ELEMENT (GST_MESSAGE_SRC (message));
g_message ("Element error: %s -- %s\n", error->message, debug);
- if (g_str_has_prefix (gst_element_get_name (gst_error),
- VIDEO_INPUT_ERROR_PREFIX))
+ name = gst_element_get_name (gst_error);
+ if (g_str_has_prefix (name, VIDEO_INPUT_ERROR_PREFIX))
{
/* Remove the video input and continue */
if (priv->video_input != NULL)
@@ -2643,6 +2644,7 @@ empathy_streamed_media_window_bus_message (GstBus *bus, GstMessage *message,
{
empathy_streamed_media_window_disconnected (self, TRUE);
}
+ g_free (name);
g_error_free (error);
g_free (debug);
}