Initialize strtokCtx to NULL for first call to strtok_r()

Apparently some strtok_r() implementations require this.
This commit is contained in:
Cameron Gutman 2023-09-27 01:27:12 -05:00
parent 1be56269a3
commit 162c581754

View File

@ -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",