[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r1661671 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

From: Greg Stein <gstein_at_gmail.com>
Date: Mon, 23 Feb 2015 18:23:43 -0600

If you *did* leave in an SVN_DBG somewhere ... you didn't remove it with this
commit. Could you please update the log message to correctly reflect the
change?

Thanks!

On Mon, Feb 23, 2015 at 7:47 AM, <rhuijben_at_apache.org> wrote:

> Author: rhuijben
> Date: Mon Feb 23 13:47:00 2015
> New Revision: 1661671
>
> URL: http://svn.apache.org/r1661671
> Log:
> I did it again... I left an SVN_DBG() call :(
>
> * subversion/libsvn_wc/wc_db.c
> (db_base_remove): Remove SVN_DBG() call.
>
> 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=1661671&r1=1661670&r2=1661671&view=diff
>
> ==============================================================================
> --- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
> +++ subversion/trunk/subversion/libsvn_wc/wc_db.c Mon Feb 23 13:47:00 2015
> @@ -2124,6 +2124,7 @@ db_base_remove(svn_wc__db_wcroot_t *wcro
> svn_boolean_t keep_working;
> int op_depth;
> svn_node_kind_t wrk_kind;
> + svn_boolean_t no_delete_wc = FALSE;
>
> SVN_ERR(svn_wc__db_base_get_info_internal(&status, &kind, &revision,
> &repos_relpath, &repos_id,
> @@ -2153,9 +2154,12 @@ db_base_remove(svn_wc__db_wcroot_t *wcro
> if (presence == svn_wc__db_status_base_deleted)
> {
> keep_working = FALSE;
> + no_delete_wc = TRUE;
> }
> else
> - keep_working = TRUE;
> + {
> + keep_working = TRUE;
> + }
> }
> else
> keep_working = FALSE;
> @@ -2175,7 +2179,7 @@ db_base_remove(svn_wc__db_wcroot_t *wcro
>
> /* Step 1: Create workqueue operations to remove files and dirs in the
> local-wc */
> - if (!keep_working)
> + if (!keep_working && !no_delete_wc)
> {
> svn_skel_t *work_item;
> const char *local_abspath;
>
>
>
Received on 2015-02-24 01:24:14 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.