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(a)winehq.org ReportedBy: wjweiss(a)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 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.