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

Re: 'svn st' segfaults

From: Garrett Rooney <rooneg_at_electricjellyfish.net>
Date: 2003-11-07 01:32:21 CET

On Nov 6, 2003, at 8:43 AM, Garrett Rooney wrote:

> * subversion/libsvn_wc/questions.c
> (svn_wc__versioned_file_modcheck): don't compose a NULL error.
>
> Index: subversion/libsvn_wc/questions.c
> ===================================================================
> --- subversion/libsvn_wc/questions.c (revision 7646)
> +++ subversion/libsvn_wc/questions.c (working copy)
> @@ -220,7 +220,8 @@
>
> if (err)
> {
> - svn_error_compose (err, err2);
> + if (err2)
> + svn_error_compose (err, err2);
> return err;
> }

I just committed this change in revision 7662.

-garrett

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Nov 7 01:33:03 2003

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.