Could have used svn_dirent_join() there...
On Wed, Apr 1, 2009 at 14:03, Senthil Kumaran S <senthil_at_collab.net> wrote:
> Author: stylesen
> Date: Wed Apr 1 05:03:00 2009
> New Revision: 36919
>
> Log:
> Fix issue #3250.
>
> * subversion/libsvn_wc/props.c
> (get_existing_prop_reject_file): Join paths cleanly.
>
> Modified:
> trunk/subversion/libsvn_wc/props.c
>
> Modified: trunk/subversion/libsvn_wc/props.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_wc/props.c?pathrev=36919&r1=36918&r2=36919
> ==============================================================================
> --- trunk/subversion/libsvn_wc/props.c Wed Apr 1 01:13:38 2009 (r36918)
> +++ trunk/subversion/libsvn_wc/props.c Wed Apr 1 05:03:00 2009 (r36919)
> @@ -232,8 +232,7 @@ get_existing_prop_reject_file(const char
> SVN_ERR(svn_wc__entry_versioned(&entry, path, adm_access, FALSE, pool));
>
> *reject_file = entry->prejfile
> - ? apr_pstrcat(pool, svn_wc_adm_access_path(adm_access),
> - entry->prejfile, NULL)
> + ? svn_path_join(svn_wc_adm_access_path(adm_access), entry->prejfile, pool)
> : NULL;
> return SVN_NO_ERROR;
> }
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=495&dsMessageId=1506336
>
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=1506356
Received on 2009-04-01 14:06:26 CEST