Commit 7a1ef2c1 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

wininet/ftp: Remove unneeded (double) checks.

parent 7c7271d4
......@@ -871,7 +871,7 @@ lend:
/***********************************************************************
* FTP_FtpGetCurrentDirectoryA (Internal)
* FTP_FtpGetCurrentDirectoryW (Internal)
*
* Retrieves the current directory
*
......@@ -889,12 +889,6 @@ BOOL WINAPI FTP_FtpGetCurrentDirectoryW(LPWININETFTPSESSIONW lpwfs, LPWSTR lpszC
TRACE("len(%d)\n", *lpdwCurrentDirectory);
if (NULL == lpwfs || WH_HFTPSESSION != lpwfs->hdr.htype)
{
INTERNET_SetLastError(ERROR_INTERNET_INCORRECT_HANDLE_TYPE);
return FALSE;
}
/* Clear any error information */
INTERNET_SetLastError(0);
......
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