RESOLVED FIXED 84668
ObjcClass::methodsNamed() can leak if buffer is dynamically allocated
https://bugs.webkit.org/show_bug.cgi?id=84668
Summary ObjcClass::methodsNamed() can leak if buffer is dynamically allocated
Benjamin Poulain
Reported 2012-04-23 20:09:48 PDT
From ObjcClass::methodsNamed(): char fixedSizeBuffer[1024]; char* buffer = fixedSizeBuffer; CString jsName = identifier.ascii(); if (!convertJSMethodNameToObjc(jsName.data(), buffer, sizeof(fixedSizeBuffer))) { int length = jsName.length() + 1; buffer = new char[length]; if (!buffer || !convertJSMethodNameToObjc(jsName.data(), buffer, length)) return methodList; } RetainPtr<CFStringRef> methodName(AdoptCF, CFStringCreateWithCString(NULL, buffer, kCFStringEncodingASCII)); Method* method = (Method*)CFDictionaryGetValue(_methods.get(), methodName.get()); if (method) { methodList.append(method); return methodList; } If the second convertJSMethodNameToObjc() return false, or if the the dictionary match the method name, buffer is never released.
Attachments
Patch (13.45 KB, patch)
2012-04-26 13:14 PDT, Benjamin Poulain
no flags
Benjamin Poulain
Comment 1 2012-04-26 13:14:16 PDT
Benjamin Poulain
Comment 2 2012-04-26 14:06:59 PDT
Comment on attachment 139054 [details] Patch Clearing flags on attachment: 139054 Committed r115358: <http://trac.webkit.org/changeset/115358>
Benjamin Poulain
Comment 3 2012-04-26 14:07:02 PDT
All reviewed patches have been landed. Closing bug.
Darin Adler
Comment 4 2014-04-24 16:45:30 PDT
Moving all JavaScriptGlue bugs to JavaScriptCore. The JavaScriptGlue framework itself is long gone. And most of the more recent bugs put in this component were put there by people who thought this was for some other aspect of “JavaScript glue” and have nothing to do with the actual original reason for the existence of this component, which was an OS-X-only framework named JavaScriptGlue.
Note You need to log in before you can comment on or make changes to this bug.