[mapguide-commits] r6046 - trunk/MgDev/Server/src/Services/Feature

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Aug 8 11:44:36 EDT 2011


Author: waltweltonlair
Date: 2011-08-08 08:44:36 -0700 (Mon, 08 Aug 2011)
New Revision: 6046

Modified:
   trunk/MgDev/Server/src/Services/Feature/ServerFdoFeatureReader.cpp
Log:
Correct bug in ticket 1766 submission

The catch block in MgServerFdoFeatureReader.GetFeatureObject was missing
a throw statement.


Modified: trunk/MgDev/Server/src/Services/Feature/ServerFdoFeatureReader.cpp
===================================================================
--- trunk/MgDev/Server/src/Services/Feature/ServerFdoFeatureReader.cpp	2011-08-08 13:42:23 UTC (rev 6045)
+++ trunk/MgDev/Server/src/Services/Feature/ServerFdoFeatureReader.cpp	2011-08-08 15:44:36 UTC (rev 6046)
@@ -124,7 +124,7 @@
                 __LINE__, __WFILE__, &arguments, L"", NULL);
         }
         else
-            throw ;
+            throw;
     }
 }
 
@@ -264,6 +264,8 @@
             throw new MgNullPropertyValueException(L"MgServerFdoFeatureReader.GetFeatureObject",
                 __LINE__, __WFILE__, &arguments, L"", NULL);
         }
+        else
+            throw;
     }
 }
 



More information about the mapguide-commits mailing list