CVS has been updated with a fix for those memory leaks introduced as of version 2.51 ( or 2.52 ). Either update or change this code: listeners.js DynObject.prototype.del = function() { this._listeners_del(); this.removeAllEventListeners(); }; should be DynObject.prototype.del = function() { this.removeAllEventListeners(); this._listeners_del(); }; listeners were not removed because DynLayer no longer existed, then mouse events were not freed. I've found most of the leaking mouse-related, hmmm... I'll give it some work. The website I'm developing is so big that kills any machine after a couple reloads. _______________________________________________ Dynapi-Dev mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/dynapi-dev
[Dynapi-Dev] Fixed newly introduced memory leak.
Jordi - IlMaestro - Ministral Tue, 08 May 2001 02:05:32 -0700
- Re: [Dynapi-Dev] Fixed newly introduced memo... Jordi - IlMaestro - Ministral
- Re: [Dynapi-Dev] Fixed newly introduced... Eytan Heidingsfeld
- Re: [Dynapi-Dev] Fixed newly introd... Jordi - IlMaestro - Ministral