rtpsink: Fix error handling on bad DNS

This will properly print the DNS being attempted to resolved and avoid
trying to unref a NULL pointer.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1433>
This commit is contained in:
Nicolas Dufresne 2020-07-11 15:21:33 -04:00 committed by GStreamer Merge Bot
parent 89fbcc71d9
commit 82fe23f212

View file

@ -506,10 +506,8 @@ gst_rtp_sink_start (GstRtpSink * self)
dns_resolve_failed:
GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND,
("Could not resolve hostname '%s'", GST_STR_NULL (remote_addr)),
("Could not resolve hostname '%s'", gst_uri_get_host (self->uri)),
("DNS resolver reported: %s", error->message));
g_free (remote_addr);
g_object_unref (iaddr);
g_error_free (error);
return FALSE;
}