You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ko...@apache.org on 2021/02/22 12:58:12 UTC

svn commit: r1886791 - /subversion/trunk/subversion/libsvn_wc/update_editor.c

Author: kotkov
Date: Mon Feb 22 12:58:12 2021
New Revision: 1886791

URL: http://svn.apache.org/viewvc?rev=1886791&view=rev
Log:
* subversion/libsvn_wc/update_editor.c
  (open_working_file_writer): Fix typo: allocate the result in RESULT_POOL,
   not in FB->POOL.  This doesn't change the visible behavior, because two
   current calling sites pass FB->POOL as the result pool when calling this
   function.

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

Modified: subversion/trunk/subversion/libsvn_wc/update_editor.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/update_editor.c?rev=1886791&r1=1886790&r2=1886791&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/update_editor.c (original)
+++ subversion/trunk/subversion/libsvn_wc/update_editor.c Mon Feb 22 12:58:12 2021
@@ -3673,7 +3673,7 @@ open_working_file_writer(svn_wc__working
                                            fb->adding_file,
                                            fb->edit_baton->repos_root,
                                            fb->new_repos_relpath,
-                                           fb->pool,
+                                           result_pool,
                                            scratch_pool));
 
   return SVN_NO_ERROR;