[Webkit-unassigned] [Bug 12081] Crash in Windows cookie code if cookies change between calls

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jan 21 11:32:38 PST 2007


http://bugs.webkit.org/show_bug.cgi?id=12081





------- Comment #2 from marv.decker at gmail.com  2007-01-21 11:32 PDT -------
This patch still causes crashes. InternetGetCookie is buggy and will write one
past the end of the buffer on ERROR_INVALID_PARAMETER. At the top of the loop:
  count = cookieBuffer.size() - 1;
and at the bottom, we need:
  cookieBuffer.resize(count + 1);
to compensate.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list