You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/02/19 13:47:23 UTC

svn commit: r1447699 - /subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c

Author: stsp
Date: Tue Feb 19 12:47:23 2013
New Revision: 1447699

URL: http://svn.apache.org/r1447699
Log:
Temporarily revert r1447695 which is causing unexpected test failures.

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

Modified: subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c?rev=1447699&r1=1447698&r2=1447699&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c Tue Feb 19 12:47:23 2013
@@ -1348,25 +1348,11 @@ get_tc_info(svn_wc_operation_t *operatio
   if (locations)
     {
       SVN_ERR_ASSERT(locations->nelts >= 2);
-
-      /* This might set {old,new}_version to NULL. */
       *old_version = APR_ARRAY_IDX(locations, 0,
-                                   svn_wc_conflict_version_t *);
+                                     svn_wc_conflict_version_t *);
       *new_version = APR_ARRAY_IDX(locations, 1,
                                    svn_wc_conflict_version_t *);
     }
-  else
-    {
-      *old_version = NULL;
-      *new_version = NULL;
-    }
-
-  /* The update-move editor relies on version information being available. */
-  if (*old_version == NULL || *new_version == NULL)
-    return svn_error_createf(SVN_ERR_WC_CONFLICT_RESOLVER_FAILURE, NULL,
-                             _("'%s' has no conflict version information"),
-                             svn_dirent_local_style(src_abspath,
-                                                    scratch_pool));
 
   SVN_ERR(svn_wc__conflict_read_tree_conflict(local_change,
                                               incoming_change,