Author: hwright
Date: Wed Apr 11 13:19:58 2012
New Revision: 1324754

URL: http://svn.apache.org/viewvc?rev=1324754&view=rev
Log:
Pool fixes, followup to r1311847.

* subversion/libsvn_delta/compat.c
  (ev2_add_directory, ev2_open_directory): Place values in the correct pool.

Modified:
    subversion/trunk/subversion/libsvn_delta/compat.c

Modified: subversion/trunk/subversion/libsvn_delta/compat.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_delta/compat.c?rev=1324754&r1=1324753&r2=1324754&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/compat.c (original)
+++ subversion/trunk/subversion/libsvn_delta/compat.c Wed Apr 11 13:19:58 2012
@@ -746,7 +746,7 @@ ev2_add_directory(const char *path,
         {
           const char *name = svn_relpath_basename(relpath, scratch_pool);
           cb->copyfrom_path = svn_relpath_join(pb->copyfrom_path, name,
-                                               scratch_pool);
+                                               result_pool);
           cb->copyfrom_rev = pb->copyfrom_rev;
         }
     }
@@ -793,7 +793,7 @@ ev2_open_directory(const char *path,
       const char *name = svn_relpath_basename(relpath, scratch_pool);
 
       db->copyfrom_path = svn_relpath_join(pb->copyfrom_path, name,
-                                           scratch_pool);
+                                           result_pool);
       db->copyfrom_rev = pb->copyfrom_rev;
     }
 


Reply via email to