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

Re: CVS update: subversion/subversion/libsvn_fs editor.c

From: Kevin Pilch-Bisson <kevin_at_pilch-bisson.net>
Date: 2001-03-19 20:12:29 CET

On Mon, Mar 19, 2001 at 06:39:02PM -0000, cmpilato@tigris.org wrote:
> User: cmpilato
> Date: 01/03/19 10:39:02
>
> Modified: subversion/libsvn_fs editor.c
> Log:
> * libsvn_fs/editor.c
>
> (close_edit): Bug fix. If an attempt to commit fails, we should
> probably return that failure to the caller.
>
> Revision Changes Path
> 1.29 +1 -0 subversion/subversion/libsvn_fs/editor.c
>
> Index: editor.c
> ===================================================================
> RCS file: /cvs/subversion/subversion/libsvn_fs/editor.c,v
> retrieving revision 1.28
> retrieving revision 1.29
> diff -u -r1.28 -r1.29
> --- editor.c 2001/03/19 01:52:38 1.28
> +++ editor.c 2001/03/19 18:39:01 1.29
> @@ -420,6 +420,7 @@
> needs to update and commit again :) */
>
> SVN_ERR (svn_fs_abort_txn (eb->txn));

#define SVN_ERR(expr) \
  do { \
    svn_error_t *svn_err__temp = (expr); \
    if (svn_err__temp) \
      return svn_err__temp; \
    } while (0)

It looks like it is being returned to me.

> + return err;
> }
>
> /* The commit succeeded. Save the log message as a property of the
>
>
>
>

-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Kevin Pilch-Bisson                    http://www.pilch-bisson.net
     "Historically speaking, the presences of wheels in Unix
     has never precluded their reinvention." - Larry Wall
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  • application/pgp-signature attachment: stored
Received on Sat Oct 21 14:36:26 2006

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.