Commit 5ec3fe6b authored by Rafaël Carré's avatar Rafaël Carré

vlc_url.h: mark some functions with attribute malloc

parent 5b91ae5b
...@@ -45,11 +45,11 @@ struct vlc_url_t ...@@ -45,11 +45,11 @@ struct vlc_url_t
char *psz_buffer; /* to be freed */ char *psz_buffer; /* to be freed */
}; };
VLC_API char * decode_URI_duplicate( const char *psz ); VLC_API char * decode_URI_duplicate( const char *psz ) VLC_MALLOC;
VLC_API char * decode_URI( char *psz ); VLC_API char * decode_URI( char *psz );
VLC_API char * encode_URI_component( const char *psz ); VLC_API char * encode_URI_component( const char *psz ) VLC_MALLOC;
VLC_API char * make_URI( const char *path, const char *scheme ); VLC_API char * make_URI( const char *path, const char *scheme ) VLC_MALLOC;
VLC_API char * make_path( const char *url ); VLC_API char * make_path( const char *url ) VLC_MALLOC;
/***************************************************************************** /*****************************************************************************
* vlc_UrlParse: * vlc_UrlParse:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment