gstein@tigris.org writes:
> Log:
> (log_do_committed): make sure to assign to 'err' before testing it.
Thanks, Greg.
-K
> Modified: trunk/subversion/libsvn_wc/log.c
> ==============================================================================
> --- OLD/trunk/subversion/libsvn_wc/log.c Fri Jan 11 01:32:29 2002
> +++ NEW/trunk/subversion/libsvn_wc/log.c Fri Jan 11 01:32:29 2002
> @@ -704,10 +704,10 @@
> {
> svn_boolean_t same;
>
> - svn_wc__versioned_file_modcheck (&same,
> - working_file,
> - tmp_base,
> - loggy->pool);
> + err = svn_wc__versioned_file_modcheck (&same,
> + working_file,
> + tmp_base,
> + loggy->pool);
> if (err)
> return svn_error_createf
> (SVN_ERR_WC_BAD_ADM_LOG, 0, NULL, loggy->pool,
>
>
> ---------------------------------------------------------------------
> 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 Sat Oct 21 14:36:56 2006