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 2010/05/10 17:16:30 UTC

Re: svn commit: r942820 - /subversion/trunk/subversion/libsvn_wc/adm_ops.c

On Mon, May 10, 2010 at 12:57,  <ju...@apache.org> wrote:
>...
> +++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Mon May 10 16:57:42 2010
> @@ -2388,10 +2388,10 @@ svn_wc__get_pristine_contents(svn_stream
>
>         svn_error_clear(err);
>
> -        return svn_error_return(svn_wc__get_revert_contents(contents,
> -                                                            db, local_abspath,
> -                                                            result_pool,
> -                                                            scratch_pool));
> +        SVN_ERR(svn_wc__text_revert_path(&text_base, db, local_abspath,
> +                                         scratch_pool));
> +        return svn_stream_open_readonly(contents, text_base,
> +                                   result_pool, scratch_pool);

svn_error_return ?