Commit cb9a583c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

var_LocationParse(): accept semicolon as separator

This is for backward compatibility with existing VLC playlists and
VLC playlist generators.
parent 76b1bcfc
...@@ -1083,8 +1083,10 @@ cleanup: ...@@ -1083,8 +1083,10 @@ cleanup:
#undef var_LocationParse #undef var_LocationParse
/** /**
* Parses a set of colon-separated <variable name>=<value> pairs. Some access * Parses a set of colon-separated or semicolon-separated
* (or access_demux) plugins uses this scheme in media resource location. * <variable name>=<value> pairs.
* Some access (or access_demux) plugins uses this scheme
* in media resource location.
* @note Only trusted/safe variables are allowed. This is intended. * @note Only trusted/safe variables are allowed. This is intended.
* *
* @warning Only use this for plugins implementing VLC-specific resource * @warning Only use this for plugins implementing VLC-specific resource
...@@ -1104,9 +1106,9 @@ int var_LocationParse (vlc_object_t *obj, const char *mrl, const char *pref) ...@@ -1104,9 +1106,9 @@ int var_LocationParse (vlc_object_t *obj, const char *mrl, const char *pref)
assert(mrl != NULL); assert(mrl != NULL);
while (*mrl != '\0') while (*mrl != '\0')
{ {
mrl += strspn (mrl, ":"); /* skip leading colon(s) */ mrl += strspn (mrl, ":;"); /* skip leading colon(s) */
size_t len = strcspn (mrl, ":"); size_t len = strcspn (mrl, ":;");
char *buf = malloc (preflen + len); char *buf = malloc (preflen + len);
if (likely(buf != NULL)) if (likely(buf != NULL))
......
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