rtsp: change an !ISSPACE to !ISBLANK, as that's probably the intended
This commit is contained in:
parent
7ddcfafc73
commit
90e79aa780
@ -957,7 +957,7 @@ CURLcode Curl_rtsp_parseheader(struct Curl_easy *data, const char *header)
|
|||||||
* gstreamer does url-encoded session ID's not covered by the standard.
|
* gstreamer does url-encoded session ID's not covered by the standard.
|
||||||
*/
|
*/
|
||||||
end = start;
|
end = start;
|
||||||
while(*end && *end != ';' && !ISSPACE(*end))
|
while(*end && *end != ';' && !ISBLANK(*end))
|
||||||
end++;
|
end++;
|
||||||
idlen = end - start;
|
idlen = end - start;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user