Comment #8 on issue 5295 by macdome: Uninitialized memory reads in layout  
test misc/acid3.html
http://code.google.com/p/chromium/issues/detail?id=5295

chrome/src/webkit/port/v8/V8SVGPODTypeWrapper.h is the file in question.   
The function in question is:

     // Used for readwrite attributes only
     static WrapperBase* lookupOrCreateWrapper(PODTypeCreator* creator,  
GetterMethod getter, SetterMethod
setter)
     {
         DynamicWrapperHashMap& map(dynamicWrapperHashMap());
         CacheInfo info(creator, getter, setter);

         if (map.contains(info))
             return map.get(info);

         DynamicWrapper* wrapper = new V8SVGDynamicPODTypeWrapper<PODType,  
PODTypeCreator>(
           creator, getter, setter, forgetWrapper);
         map.set(info, wrapper);
         return wrapper;
     }

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to