http://bugs.winehq.org/show_bug.cgi?id=3263
Summary: INTERNET_FLAG_NO_AUTO_REDIRECT doesn't work Product: Wine Version: CVS Platform: All OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-net AssignedTo: wine-bugs@winehq.org ReportedBy: orin@pinhead.cc
The following line in http.c (1776 in 08/24/05 version):
if(!(hIC->hdr.dwFlags & INTERNET_FLAG_NO_AUTO_REDIRECT) && bSuccess)
Should be:
if(!(lpwhr->hdr.dwFlags & INTERNET_FLAG_NO_AUTO_REDIRECT) && bSuccess)