[commit] r1587 - trunk/GME/XmlBackEnd/SVNCode

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Tue Oct 4 18:03:28 CDT 2011


Author: ksmyth
Date: Tue Oct  4 18:03:28 2011
New Revision: 1587

Log:
Dont use a Path object; it is slow

Modified:
   trunk/GME/XmlBackEnd/SVNCode/Client.cpp

Modified: trunk/GME/XmlBackEnd/SVNCode/Client.cpp
==============================================================================
--- trunk/GME/XmlBackEnd/SVNCode/Client.cpp	Tue Oct  4 18:03:16 2011	(r1586)
+++ trunk/GME/XmlBackEnd/SVNCode/Client.cpp	Tue Oct  4 18:03:28 2011	(r1587)
@@ -354,8 +354,8 @@
 
 
 	//propertySet(path, name, val->data, recurse, force);                     // modified from val to val->data
-    Path intPath(path, reqPool.pool());
-    svn_error_t *Err = intPath.error_occured();
+    //Path intPath(path, reqPool.pool());
+    svn_error_t *Err = NULL; // intPath.error_occured();
     if(Err != NULL)
     {
         Util::handleSVNError(Err);
@@ -366,7 +366,7 @@
     if(ctx == NULL)
         return false;
     Err = svn_client_propset2 (name, val, 
-                                intPath.c_str(),
+                                path,
                                 recurse, 
                                 force,
                                 ctx,


More information about the gme-commit mailing list