mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2025-07-01 23:35:58 +00:00
Initialize strtokCtx to NULL for first call to strtok_r()
Apparently some strtok_r() implementations require this.
This commit is contained in:
parent
1be56269a3
commit
162c581754
@ -972,7 +972,7 @@ int performRtspHandshake(PSERVER_INFORMATION serverInfo) {
|
||||
char* sessionId;
|
||||
char* pingPayload;
|
||||
int error = -1;
|
||||
char* strtokCtx;
|
||||
char* strtokCtx = NULL;
|
||||
|
||||
if (!setupStream(&response,
|
||||
AppVersionQuad[0] >= 5 ? "streamid=audio/0/0" : "streamid=audio",
|
||||
|
Loading…
x
Reference in New Issue
Block a user