You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2012/05/04 22:13:28 UTC

svn commit: r1334154 - /subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c

Author: hwright
Date: Fri May  4 20:13:28 2012
New Revision: 1334154

URL: http://svn.apache.org/viewvc?rev=1334154&view=rev
Log:
On the ev2-export branch:
When doing a delete upon commit, just bail after the delete.

* subversion/libsvn_client/commit_util.c
  (do_item_commit): Early out when deleting.

Modified:
    subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c

Modified: subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c
URL: http://svn.apache.org/viewvc/subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c?rev=1334154&r1=1334153&r2=1334154&view=diff
==============================================================================
--- subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c (original)
+++ subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c Fri May  4 20:13:28 2012
@@ -1568,6 +1568,8 @@ do_item_commit(svn_client_commit_item3_t
 
       if (err)
         goto fixup_error;
+
+      return SVN_NO_ERROR;
     }
 
 /*  if ((item->state_flags & SVN_CLIENT_COMMIT_ITEM_PROP_MODS) ||