Fixed dead store warnings

This commit is contained in:
akallabeth
2022-04-28 10:49:42 +02:00
committed by akallabeth
parent 6fd71fe737
commit 962c5c3ef0
25 changed files with 83 additions and 61 deletions

View File

@@ -446,6 +446,7 @@ static UINT disp_server_open(DispServerContext* context)
{
WLog_ERR(TAG, "CreateEvent failed!");
rc = ERROR_INTERNAL_ERROR;
goto out_close;
}
if (!(priv->thread =
@@ -455,6 +456,7 @@ static UINT disp_server_open(DispServerContext* context)
CloseHandle(priv->stopEvent);
priv->stopEvent = NULL;
rc = ERROR_INTERNAL_ERROR;
goto out_close;
}
}