Skip to content
Snippets Groups Projects
Commit bd1cd88d authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

access: rtp: case insensitive match configuration parameters

in most specs format parameters are not case dependent
parent 635962fd
No related branches found
No related tags found
1 merge request!6385access: rtp: case insensitive match configuration parameters
Pipeline #538761 passed with stage
in 11 minutes and 50 seconds
......@@ -35,7 +35,7 @@ const char *vlc_sdp_fmtp_get_str(const struct vlc_sdp_pt *desc,
while (p != NULL) {
p += strspn(p, " ");
if (strncmp(p, name, namelen) == 0 && p[namelen] == '=') {
if (vlc_ascii_strncasecmp(p, name, namelen) == 0 && p[namelen] == '=') {
p += namelen + 1;
*lenp = strcspn(p, ";");
return p;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment