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

Re: [PATCH] Fix for --internal-diff cmd coredump problem

From: Philip Martin <philip.martin_at_wandisco.com>
Date: Wed, 24 Apr 2013 17:00:30 +0100

Gabriela Gibson <gabriela.gibson_at_gmail.com> writes:

> Index: subversion/libsvn_subr/config.c
> ===================================================================
> --- subversion/libsvn_subr/config.c (revision 1465268)
> +++ subversion/libsvn_subr/config.c (working copy)
> @@ -464,7 +464,7 @@ make_string_from_option(const char **valuep, svn_c
> /* before attempting to expand an option, check for the placeholder.
> * If none is there, there is no point in calling expand_option_value.
> */
> - if (strchr(opt->value, '%'))
> + if (opt->value && strchr(opt->value, '%'))
> {
> apr_pool_t *tmp_pool = (x_pool ? x_pool : svn_pool_create(cfg->x_pool));
>

We patched that a couple of weeks ago: r1467807.

-- 
Certified & Supported Apache Subversion Downloads:
http://www.wandisco.com/subversion/download
Received on 2013-04-24 18:01:25 CEST

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.