Author: max
Date: 2007-09-04 18:27:30 -0700 (Tue, 04 Sep 2007)
New Revision: 6356

Modified:
   openlaszlo/branches/legals/WEB-INF/lps/lfc/data/LzReplicationManager.lzs
Log:
 20070904-maxcarlson-5 by [EMAIL PROTECTED] on 2007-09-04 15:57:04 PDT
    in /Users/maxcarlson/openlaszlo/legals
    for http://svn.openlaszlo.org/openlaszlo/branches/legals

Summary: Add more safety checking for LzReplicationManager

New Features:

Bugs Fixed: LPP-4188 - test/lfc/lzunit-node-replication.lzx gives error in dhtml

Technical Reviewer: promanik
QA Reviewer: jcrowley
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details: Check for v.sprite before calling v.sprite.destroy().
    

Tests: 
http://localhost:8080/legals/test/lfc/lzunit-node-replication.lzx?lzr=dhtml 
passes



Modified: 
openlaszlo/branches/legals/WEB-INF/lps/lfc/data/LzReplicationManager.lzs
===================================================================
--- openlaszlo/branches/legals/WEB-INF/lps/lfc/data/LzReplicationManager.lzs    
2007-09-05 00:32:20 UTC (rev 6355)
+++ openlaszlo/branches/legals/WEB-INF/lps/lfc/data/LzReplicationManager.lzs    
2007-09-05 01:27:30 UTC (rev 6356)
@@ -564,7 +564,7 @@
   * @access private
   */
 function destroyClone ( v ) {
-    v.sprite.destroy(true);
+    if (v.sprite) v.sprite.destroy(true);
     v.destroy();
 }
 


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to