uri: fix wrong G_GNUC_MALLOC
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Sat, 26 Nov 2011 19:45:48 +0000 (19:45 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sat, 26 Nov 2011 19:45:48 +0000 (19:45 +0000)
_get_protocols() points to const memory in 0.10
despite the non-const return value.

gst/gsturi.h

index d071937f51d95d037333e7b97df429faecfb4c6c..5c3f705b6fe4c9c2836895dd9a68dae334762402 100644 (file)
@@ -144,7 +144,7 @@ GstElement *        gst_element_make_from_uri       (const GstURIType type,
 GType          gst_uri_handler_get_type        (void);
 
 guint          gst_uri_handler_get_uri_type    (GstURIHandler * handler);
-gchar **       gst_uri_handler_get_protocols   (GstURIHandler * handler) G_GNUC_MALLOC;
+gchar **       gst_uri_handler_get_protocols   (GstURIHandler * handler);
 const gchar *  gst_uri_handler_get_uri         (GstURIHandler * handler);
 gboolean       gst_uri_handler_set_uri         (GstURIHandler * handler,
                                                 const gchar *   uri);