[commit] r1697 - trunk/GME/Mga

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Mon Nov 21 17:38:47 CST 2011


Author: ksmyth
Date: Mon Nov 21 17:38:47 2011
New Revision: 1697

Log:
Fix annoying failing assert when using GC/Python

Modified:
   trunk/GME/Mga/MgaFCO.h

Modified: trunk/GME/Mga/MgaFCO.h
==============================================================================
--- trunk/GME/Mga/MgaFCO.h	Mon Nov 21 17:38:34 2011	(r1696)
+++ trunk/GME/Mga/MgaFCO.h	Mon Nov 21 17:38:47 2011	(r1697)
@@ -77,7 +77,14 @@
 				}
 			 }
 		 }
-		 else inFCO->Close();
+		 else
+		 {
+#ifdef _DEBUG
+			 innFCO->Close();
+#else
+			 inFCO->Close();
+#endif
+		 }
 	 }
 
 	 FCO::pubfcohash::iterator ii = innFCO->pubfcos.find(territory);


More information about the gme-commit mailing list