mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-06-24 05:31:13 +00:00
Options value parsing fix
This commit is contained in:
committed by
Cameron Gutman
parent
07beb0f0a5
commit
5e14dbc15e
+1
-1
@@ -160,7 +160,7 @@ int parseRtspMessage(PRTSP_MESSAGE msg, char* rtspMessage, int length) {
|
|||||||
}
|
}
|
||||||
newOpt->flags = 0;
|
newOpt->flags = 0;
|
||||||
newOpt->option = opt;
|
newOpt->option = opt;
|
||||||
newOpt->content = token;
|
newOpt->content = token + 1; // Skip the protocol defined blank space
|
||||||
newOpt->next = NULL;
|
newOpt->next = NULL;
|
||||||
insertOption(&options, newOpt);
|
insertOption(&options, newOpt);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user