[Bug 29249] iexplore fails to load ftp.adobe.com

wine-bugs at winehq.org wine-bugs at winehq.org
Wed Sep 14 19:37:23 CDT 2016


https://bugs.winehq.org/show_bug.cgi?id=29249

--- Comment #15 from Bruno Jesus <00cpxxx at gmail.com> ---
AFAICS the problem is that wininet thinks every URL points to a file and then
tries to download it [1] using FtpOpenFileW.

http://source.winehq.org/source/dlls/wininet/internet.c#3477 :

case INTERNET_SCHEME_FTP:
  client = FTP_Connect(hIC, host, urlComponents.nPort,
               user, pass, dwFlags, dwContext, INET_OPENURL);
  if(client == NULL)
      break;
  client1 = FtpOpenFileW(client, path, GENERIC_READ, dwFlags, dwContext);
  if(client1 == NULL) {
      InternetCloseHandle(client);
      break;
  }
break;

The file in this case is "/" which means to retrieve the root folder listing
for the FTP.

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list