Use existing cleanup path for handling early-out errors
This commit is contained in:
parent
e741a12a25
commit
e8dd103ed9
1 changed files with 4 additions and 6 deletions
|
|
@ -179,18 +179,16 @@ int LiStartConnection(PSERVER_INFORMATION serverInfo, PSTREAM_CONFIGURATION stre
|
|||
|
||||
if (StreamConfig.packetSize == 0) {
|
||||
Limelog("Invalid packet size specified\n");
|
||||
free(RemoteAddrString);
|
||||
RemoteAddrString = NULL;
|
||||
return -1;
|
||||
err = -1;
|
||||
goto Cleanup;
|
||||
}
|
||||
|
||||
// Extract the appversion from the supplied string
|
||||
if (extractVersionQuadFromString(serverInfo->serverInfoAppVersion,
|
||||
AppVersionQuad) < 0) {
|
||||
Limelog("Invalid appversion string: %s\n", serverInfo->serverInfoAppVersion);
|
||||
free(RemoteAddrString);
|
||||
RemoteAddrString = NULL;
|
||||
return -1;
|
||||
err = -1;
|
||||
goto Cleanup;
|
||||
}
|
||||
|
||||
// Replace missing callbacks with placeholders
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue