Bug 439041 - [Progress] MemoryLeak in ProgressAnimationItem
Summary: [Progress] MemoryLeak in ProgressAnimationItem
Status: RESOLVED FIXED
Alias: None
Product: Platform
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.8.2   Edit
Hardware: PC Windows 7
: P3 normal (vote)
Target Milestone: 4.5 M6   Edit
Assignee: Tomasz Zarna CLA
QA Contact:
URL:
Whiteboard:
Keywords: bugday, greatfix, helpwanted
Depends on:
Blocks:
 
Reported: 2014-07-07 12:05 EDT by Marc R. Hoffmann CLA
Modified: 2015-03-10 02:19 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marc R. Hoffmann CLA 2014-07-07 12:05:31 EDT
We're experience a memory leak in our 3.8.2 Eclipse RCP app during a long running test. MemoryAnalyzer shows thousands of "" instances. It is the AccessibleListener added here: org.eclipse.ui.internal.progress.ProgressAnimationItem Line 272:

    	toolbar.getAccessible().addAccessibleListener(new AccessibleAdapter() {
        	public void getName(AccessibleEvent e) {
        		e.result = tt;
        	}
        });

The snippet is called for every refresh, i.e. for every task.

This is a duplicate of closed Bug #329711 which has probably not been fixed. I can't reopen it, sorry for the duplicate.
Comment 1 Eclipse Genie CLA 2015-03-02 12:10:53 EST
New Gerrit change created: https://git.eclipse.org/r/43033
Comment 2 Eclipse Genie CLA 2015-03-05 17:40:51 EST
New Gerrit change created: https://git.eclipse.org/r/43269
Comment 5 Sergey Prigogin CLA 2015-03-10 02:19:41 EDT
Thank you, Tomasz.