Bug 118385
Summary: | [ATK] Leak: title leaks in AccessibilityUIElement | ||
---|---|---|---|
Product: | WebKit | Reporter: | Brian Holt <brian.holt> |
Component: | Accessibility | Assignee: | Nobody <webkit-unassigned> |
Status: | UNCONFIRMED | ||
Severity: | Normal | CC: | bugs-noreply |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Unspecified | ||
OS: | Linux | ||
Bug Depends on: | |||
Bug Blocks: | 116317 |
Brian Holt
+++ This bug was initially created as a clone of Bug #118362 +++
When I reported this originally I did so thinking that both bugs could be fixed in the same file fairly easily.
However the leak below in AccessibilityUIElement::title calls webkitAccessibleGetName(AtkObject*) that sometimes returns a char* that is created by g_strdup but it also sometimes returns a value stored in a cache. Freeing that would be a disaster.
This is probably not worth the effort required to refactor to fix the few bytes leaking, but opening this bug to track it anyway.
{
<insert_a_suppression_name_here>
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_strdup
fun:_ZL27webkitAccessibleTextGetTextP8_AtkTextii
fun:_ZL23webkitAccessibleGetNameP10_AtkObject
fun:_ZN22AccessibilityUIElement5titleEv
fun:_ZL16getTitleCallbackPK15OpaqueJSContextP13OpaqueJSValueP14OpaqueJSStringPPKS2_
fun:_ZN3JSC16JSCallbackObjectINS_20JSDestructibleObjectEE14getStaticValueEPNS_9ExecStateENS_12PropertyNameE
fun:_ZN3JSC16JSCallbackObjectINS_20JSDestructibleObjectEE18getOwnPropertySlotEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE
fun:llint_slow_path_get_by_id
obj:/home/likewise-open/SERILOCAL/brian.holt/Code/gnome3/WebKit/WebKitBuild/Release/.libs/libjavascriptcoregtk-3.0.so.0.14.1
fun:_ZN3JSC11Interpreter7executeEPNS_14EvalExecutableEPNS_9ExecStateENS_7JSValueEPNS_7JSScopeE
fun:_ZN3JSC4evalEPNS_9ExecStateE
fun:llint_slow_path_call_eval
obj:/home/likewise-open/SERILOCAL/brian.holt/Code/gnome3/WebKit/WebKitBuild/Release/.libs/libjavascriptcoregtk-3.0.so.0.14.1
fun:_ZN3JSC11Interpreter7executeEPNS_17ProgramExecutableEPNS_9ExecStateEPNS_8JSObjectE
fun:_ZN3JSC8evaluateEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueEPS5_
fun:_ZN7WebCore16ScriptController15evaluateInWorldERKNS_16ScriptSourceCodeEPNS_15DOMWrapperWorldE
fun:_ZN7WebCore16ScriptController8evaluateERKNS_16ScriptSourceCodeE
fun:_ZN7WebCore13ScriptElement13executeScriptERKNS_16ScriptSourceCodeE
fun:_ZN7WebCore13ScriptElement13prepareScriptERKN3WTF12TextPositionENS0_17LegacyTypeSupportE
fun:_ZN7WebCore16HTMLScriptRunner9runScriptEPNS_7ElementERKN3WTF12TextPositionE
}
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |