Skip to content
Snippets Groups Projects
Commit 0e09e40c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

sdp: missing initialiser

parent 91318e58
No related branches found
Tags 2.5.10
No related merge requests found
......@@ -138,7 +138,8 @@ static struct vlc_sdp_attr *vlc_sdp_attr_parse(const char *str, size_t len)
if (namelen < len) {
a->name[len] = '\0';
a->value = a->name + namelen + 1;
}
} else
a->value = NULL;
a->next = NULL;
return a;
}
......
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