wininet: Fix typo in comparison with NULL. Found by Smatch.

This commit is contained in:
Michael Stefaniuc 2007-12-29 01:04:58 +01:00 committed by Alexandre Julliard
parent 003b5de4f2
commit d152d5ceeb
1 changed files with 1 additions and 1 deletions

View File

@ -3462,7 +3462,7 @@ static BOOL FTP_ParseDirectory(LPWININETFTPSESSIONW lpwfs, INT nSocket, LPCWSTR
tmpafp = HeapReAlloc(GetProcessHeap(), 0, *lpafp,
sizeof(FILEPROPERTIESW)*indexFilePropArray);
if (NULL == tmpafp)
if (NULL != tmpafp)
*lpafp = tmpafp;
}
*dwfp = indexFilePropArray;