Options value parsing fix
This commit is contained in:
parent
07beb0f0a5
commit
5e14dbc15e
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue