Commit 6641efad authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

inetcomm: In SMTPTransport_ParseResponse remove unneeded statement (cppcheck).

parent b58094f7
......@@ -59,13 +59,7 @@ static HRESULT SMTPTransport_ParseResponse(SMTPTransport *This, char *pszRespons
pResponse->rIxpResult.pszResponse = pszResponse;
pResponse->rIxpResult.dwSocketError = 0;
pResponse->rIxpResult.uiServerError = strtol(pszResponse, &pszResponse, 10);
if (*pszResponse == '-')
{
pResponse->fDone = FALSE;
pszResponse++;
}
else
pResponse->fDone = TRUE;
pResponse->fDone = (*pszResponse != '-');
switch (pResponse->rIxpResult.uiServerError)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment