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

Re: svn commit: r988956 - /subversion/trunk/subversion/libsvn_wc/update_editor.c

From: Stefan Sperling <stsp_at_elego.de>
Date: Wed, 25 Aug 2010 14:52:05 +0200

On Wed, Aug 25, 2010 at 11:00:10AM +0100, Philip Martin wrote:
> philip_at_apache.org writes:
>
> > Author: philip
> > Date: Wed Aug 25 09:55:35 2010
> > New Revision: 988956
> >
> > URL: http://svn.apache.org/viewvc?rev=988956&view=rev
> > Log:
> > Fix some uses of unitialised variables identified by valgrind.
> >
> > * subversion/libsvn_wc/update_editor.c
> > (add_directory, add_file): Set conflicted if svn_wc__db_read_info fails.
> >
> > Modified:
> > subversion/trunk/subversion/libsvn_wc/update_editor.c
> >
> > Modified: subversion/trunk/subversion/libsvn_wc/update_editor.c
> > URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/update_editor.c?rev=988956&r1=988955&r2=988956&view=diff
> > ==============================================================================
> > --- subversion/trunk/subversion/libsvn_wc/update_editor.c (original)
> > +++ subversion/trunk/subversion/libsvn_wc/update_editor.c Wed Aug 25 09:55:35 2010
> > @@ -2357,6 +2357,7 @@ add_directory(const char *path,
> > svn_error_clear(err);
> > wc_kind = svn_wc__db_kind_unknown;
> > status = svn_wc__db_status_normal;
> > + conflicted = FALSE;
> >
> > versioned_locally_and_present = FALSE;
> > }
> > @@ -3808,6 +3809,7 @@ add_file(const char *path,
> > svn_error_clear(err);
> > wc_kind = svn_wc__db_kind_unknown;
> > status = svn_wc__db_status_normal;
> > + conflicted = FALSE;
> >
> > versioned_locally_and_present = FALSE;
> > }
>
> Could someone confirm that FALSE is correct here?

Looks fine to me.

Stefan
Received on 2010-08-25 14:52:56 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.