[Webkit-unassigned] [Bug 61006] REGRESSION(r39725?) : All CachedResources are leaked

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue May 17 19:42:35 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=61006





--- Comment #2 from James Robinson <jamesr at chromium.org>  2011-05-17 19:42:35 PST ---
Looking at a memory profile more closely I think we're actually leaking 2 KURLs, each of which has one WTF::String which holds the data url as utf-16 data and holds on to one native representation of the string, which is stored in an encoding that uses one byte/character for this data (which is all ascii).  In chromium that's a UTF-8 encoded CString, on the mac this is some sort of NSUrl or CF networking data structure.  2 UTF-16 copies + 2 utf-8/ascii copies = the 6x memory blowup we're seeing.  I think fixing the CachedResource leak is likely to fix both of these.

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



More information about the webkit-unassigned mailing list