http://bugs.winehq.org/show_bug.cgi?id=15070
--- Comment #3 from André H. nerv@dawncrow.de 2008-08-30 10:31:42 --- The Dev of HxD thinks the Function should contain something like:
if (bSuccess && lpdwIndex && "lpdwIndex + 1 is a valid index") (*lpdwIndex)++; . . . return bSuccess;
But i had great success with this:
if (bSuccess && lpdwIndex) (*lpdwIndex)++; . . . return bSuccess;
in HTTP_HttpQueryInfoW (internal)
Would someone please generate a patch, i am too stupid for that.