http://bugs.winehq.org/show_bug.cgi?id=2119
Summary: Incorrect semantics of AcceptTypes array in HttpOpenRequestW Product: Wine Version: 20040309 Platform: All OS/Version: All Status: UNCONFIRMED Severity: normal Priority: P4 Component: wine-net AssignedTo: wine-bugs@winehq.org ReportedBy: wjweiss@hotmail.com
The the specification for HttpOpenRequestA requires that the AcceptTypes array be null terminated. However, HttpOpenRequestW passes a non-null terminated array to HttpOpenRequestA. A simple fix is to change the len param at 341 from sizeof(CHAR *) * acceptTypesCount to sizeof(CHAR *) * (acceptTypesCount+1)
then add szAcceptTypes[acceptTypesCount] = 0;
after the subsequent loop