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

Re: svn commit: r9508 - trunk/subversion/libsvn_client

From: <kfogel_at_collab.net>
Date: 2004-04-26 19:57:29 CEST

sussman@tigris.org writes:
> Log:
> Fix silly segfault: 'svn export -rN imaginary-file-name'
>
> * libsvn_client/export.c (svn_client_export): actually test the
> correct variable for NULL-ness.

This seems like a 1.0.x candidate. Unless anyone objects, I'll add it
to STATUS with at least one vote.

-K

> Modified: trunk/subversion/libsvn_client/export.c
> ==============================================================================
> --- trunk/subversion/libsvn_client/export.c (original)
> +++ trunk/subversion/libsvn_client/export.c Mon Apr 26 12:13:09 2004
> @@ -677,7 +677,7 @@
> {
> use_ra = TRUE;
> SVN_ERR (svn_client_url_from_path (&URL, from, pool));
> - if (! from)
> + if (! URL)
> return svn_error_createf (SVN_ERR_ENTRY_MISSING_URL, NULL,
> "'%s' has no URL", from);
> }
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: svn-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: svn-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Apr 26 21:09:41 2004

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.