mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
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:
parent
89fbcc71d9
commit
82fe23f212
1 changed files with 1 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue