You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by gs...@apache.org on 2011/05/25 18:39:23 UTC

svn commit: r1127577 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: gstein
Date: Wed May 25 16:39:23 2011
New Revision: 1127577

URL: http://svn.apache.org/viewvc?rev=1127577&view=rev
Log:
Small tweak to pool usage.

* subversion/libsvn_wc/wc_db.c:
  (svn_wc__db_scan_deletion): put the relpaths into SCRATCH_POOL since
    we'll be joining them to create abspaths in the RESULT_POOL

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1127577&r1=1127576&r2=1127577&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Wed May 25 16:39:23 2011
@@ -9541,7 +9541,7 @@ svn_wc__db_scan_deletion(const char **ba
 
   SVN_ERR(scan_deletion(&base_del_relpath, &moved_to_relpath,
                         &work_del_relpath, wcroot,
-                        local_relpath, result_pool, scratch_pool));
+                        local_relpath, scratch_pool, scratch_pool));
 
   if (base_del_abspath)
     {