You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Yoshiki Hayashi <yo...@xemacs.org> on 2001/02/23 07:34:54 UTC

[PATCH] remove last reference to svn_fs__dag_close

* tree.c (make_path_mutable): Remove call to svn_fs__dag_close

Index: tree.c
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_fs/tree.c,v
retrieving revision 1.21
diff -u -r1.21 tree.c
--- tree.c	2001/02/22 17:58:20	1.21
+++ tree.c	2001/02/23 07:31:11
@@ -518,7 +518,6 @@
     SVN_ERR (mutable_root_node (&clone, root, error_path, trail));
 
   /* Update the PARENT_PATH link to refer to the clone.  */
-  svn_fs__dag_close (parent_path->node);
   parent_path->node = clone;
   return SVN_NO_ERROR;
 }


-- 
Yoshiki Hayashi

Re: [PATCH] remove last reference to svn_fs__dag_close

Posted by Jim Blandy <ji...@zwingli.cygnus.com>.
Applied, thanks.

Yoshiki Hayashi <yo...@xemacs.org> writes:

> 
> * tree.c (make_path_mutable): Remove call to svn_fs__dag_close
> 
> Index: tree.c
> ===================================================================
> RCS file: /cvs/subversion/subversion/libsvn_fs/tree.c,v
> retrieving revision 1.21
> diff -u -r1.21 tree.c
> --- tree.c	2001/02/22 17:58:20	1.21
> +++ tree.c	2001/02/23 07:31:11
> @@ -518,7 +518,6 @@
>      SVN_ERR (mutable_root_node (&clone, root, error_path, trail));
>  
>    /* Update the PARENT_PATH link to refer to the clone.  */
> -  svn_fs__dag_close (parent_path->node);
>    parent_path->node = clone;
>    return SVN_NO_ERROR;
>  }
> 
> 
> -- 
> Yoshiki Hayashi
>