[Laszlo-checkins] r12025 - openlaszlo/trunk/WEB-INF/lps/lfc/services
bargull@openlaszlo.org
bargull at openlaszlo.org
Tue Dec 9 08:38:03 PST 2008
Author: bargull
Date: 2008-12-09 08:38:00 -0800 (Tue, 09 Dec 2008)
New Revision: 12025
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/services/LzInstantiator.lzs
Log:
Change 20081208-bargull-tFA by bargull at dell--p4--2-53 on 2008-12-08 21:42:22
in /home/Admin/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: fix (possible) mem-leak in LzInstantiator
New Features:
Bugs Fixed: LPP-5231
Technical Reviewer: ptw
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
The "datareplQ"ueue wasn't cleared (= set to null) in "clearDataReplicationQueue()".
Tests:
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/services/LzInstantiator.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/services/LzInstantiator.lzs 2008-12-09 16:25:32 UTC (rev 12024)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/services/LzInstantiator.lzs 2008-12-09 16:38:00 UTC (rev 12025)
@@ -153,6 +153,7 @@
for (var i:int = drq.length - 1; i > 0; i -= 2) {
this.makeQ.push( drq[ i-1 ], drq[ i ] );
}
+ this.datareplQ = null;
this.checkUpdate();
}
More information about the Laszlo-checkins
mailing list