mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-04-02 22:06:10 +00:00
Initialize strtokCtx to NULL for first call to strtok_r()
Apparently some strtok_r() implementations require this.
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user