mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 04:52:28 +00:00
curlhttpsrc: Fix return value
The function returns a gchar * (and not a boolean)
This commit is contained in:
parent
b8cb08c319
commit
26108d829b
1 changed files with 1 additions and 1 deletions
|
@ -1412,7 +1412,7 @@ gst_curl_http_src_urihandler_get_uri (GstURIHandler * handler)
|
|||
gchar *ret;
|
||||
GstCurlHttpSrc *source;
|
||||
|
||||
g_return_val_if_fail (GST_IS_URI_HANDLER (handler), FALSE);
|
||||
g_return_val_if_fail (GST_IS_URI_HANDLER (handler), NULL);
|
||||
source = GST_CURLHTTPSRC (handler);
|
||||
|
||||
GSTCURL_FUNCTION_ENTRY (source);
|
||||
|
|
Loading…
Reference in a new issue