From 3c595f308a0a5454750700c31a0e4ed50962ac5f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 13 Mar 2015 18:38:42 +0000 Subject: [PATCH] multiudpsink: fix crash with GST_DEBUG enabled g_inet_socket_address_get_address() does not give us a ref to the address, so don't unref it. --- gst/udp/gstmultiudpsink.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gst/udp/gstmultiudpsink.c b/gst/udp/gstmultiudpsink.c index a232479..c81dc62 100644 --- a/gst/udp/gstmultiudpsink.c +++ b/gst/udp/gstmultiudpsink.c @@ -648,7 +648,6 @@ gst_udp_address_get_string (GSocketAddress * addr, gchar * s, gsize size) addr_str = g_inet_address_to_string (ia); g_snprintf (s, size, "%s:%u", addr_str, g_inet_socket_address_get_port (isa)); g_free (addr_str); - g_object_unref (ia); return s; } -- 2.7.4