RESOLVED FIXED 11286
Allocator mismatch in CookieJarWin
https://bugs.webkit.org/show_bug.cgi?id=11286
Summary Allocator mismatch in CookieJarWin
Darin Fisher (:fishd, Google)
Reported 2006-10-13 18:29:28 PDT
Allocator mismatch in CookieJarWin: UChar* buffer = new UChar[count]; ... delete buffer; That should be "delete[] buffer" though this surely doesn't cause any real problem since UChar doesn't have a destructor. Anyways, patch coming up...
Attachments
patch (1.58 KB, patch)
2006-10-13 18:31 PDT, Darin Fisher (:fishd, Google)
mjs: review+
Darin Fisher (:fishd, Google)
Comment 1 2006-10-13 18:31:00 PDT
Maciej Stachowiak
Comment 2 2006-10-31 04:42:13 PST
Comment on attachment 11084 [details] patch r=me Thanks also for cleaning up the style issues. This should be clear to land.
Alexey Proskuryakov
Comment 3 2006-10-31 10:52:32 PST
Committed revision 17485.
Note You need to log in before you can comment on or make changes to this bug.