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 2012/03/27 11:49:31 UTC

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

Author: stsp
Date: Tue Mar 27 09:49:31 2012
New Revision: 1305795

URL: http://svn.apache.org/viewvc?rev=1305795&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
  (get_info_for_copy): Remove unused variable (missed this one in r1305793).

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=1305795&r1=1305794&r2=1305795&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Tue Mar 27 09:49:31 2012
@@ -3428,12 +3428,11 @@ get_info_for_copy(apr_int64_t *copyfrom_
       /* The parent cannot be excluded, so look at the parent and then
          adjust the relpath */
       const char *parent_relpath, *base_name;
-      svn_boolean_t parent_have_work;
 
       svn_dirent_split(&parent_relpath, &base_name, local_relpath,
                        scratch_pool);
       SVN_ERR(get_info_for_copy(copyfrom_id, copyfrom_relpath, copyfrom_rev,
-                                NULL, NULL, NULL, &parent_have_work,
+                                NULL, NULL, NULL, NULL,
                                 wcroot, parent_relpath,
                                 scratch_pool, scratch_pool));
       if (*copyfrom_relpath)