You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Greg Stein <gs...@gmail.com> on 2012/05/13 00:04:08 UTC

Re: svn commit: r1337692 - in /subversion/trunk/subversion/libsvn_wc: conflicts.c wc_db.c wc_db.h

On May 12, 2012 11:29 AM, <rh...@apache.org> wrote:
>...
> +  if (total_affected_rows > 0)
> +    {
> +      SVN_ERR(svn_sqlite__get_statement(&stmt, wcroot->sdb,
> +                                        STMT_DELETE_ACTUAL_EMPTY));
> +      SVN_ERR(svn_sqlite__bindf(stmt, "is", wcroot->wc_id,
local_relpath));
> +      SVN_ERR(svn_sqlite__step_done(stmt));
> +
> +      SVN_ERR(add_work_items(wcroot->sdb, rb->work_items, scratch_pool));
> +    }

Shouldn't adding work be unconditional?