Author: rinrab
Date: Thu Nov 28 22:10:30 2024
New Revision: 1922202

URL: http://svn.apache.org/viewvc?rev=1922202&view=rev
Log:
On the 'apply-processor' branch: Notice the paths in merged_abspaths on each
addition.

During the check of differences between the 'apply-processor' branch and the
trunk, I noticed that it was accidently changed somehow. Reverting it back
now.

This is a follow-up to r1922090 (add callbacks for notifying merge.c
from merge_processor.c), where the problem has been introduced into the
codebase.

In my testings, I got the test-suite running on all-green, will check the
GitHub Actions status as soon as it would be ready!

* subversion/libsvn_client/merge.c
  (apply_processor_updated_path:svn_wc_notify_update_add): Store the path
   in merge_b->merged_abspaths.

Modified:
    subversion/branches/apply-processor/subversion/libsvn_client/merge.c

Modified: subversion/branches/apply-processor/subversion/libsvn_client/merge.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/apply-processor/subversion/libsvn_client/merge.c?rev=1922202&r1=1922201&r2=1922202&view=diff
==============================================================================
--- subversion/branches/apply-processor/subversion/libsvn_client/merge.c 
(original)
+++ subversion/branches/apply-processor/subversion/libsvn_client/merge.c Thu 
Nov 28 22:10:30 2024
@@ -7332,6 +7332,8 @@ apply_processor_updated_path(void *baton
       {
         if (! parent_added)
           store_path(merge_b->added_abspaths, local_abspath);
+
+        store_path(merge_b->merged_abspaths, local_abspath);
       }
     break;
   }


Reply via email to