You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by kf...@collab.net on 2004/04/26 17:57:29 UTC

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

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