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