You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2011/01/28 16:48:38 UTC

svn commit: r1064742 - /subversion/trunk/subversion/libsvn_wc/update_editor.c

Author: rhuijben
Date: Fri Jan 28 15:48:38 2011
New Revision: 1064742

URL: http://svn.apache.org/viewvc?rev=1064742&view=rev
Log:
* subversion/libsvn_wc/update_editor.c
  (modcheck_found_node): Initialize a variable before testing it.

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=1064742&r1=1064741&r2=1064742&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/update_editor.c (original)
+++ subversion/trunk/subversion/libsvn_wc/update_editor.c Fri Jan 28 15:48:38 2011
@@ -1319,6 +1319,8 @@ modcheck_found_node(const char *local_ab
   else if (!baton->found_mod || baton->all_edits_are_deletes)
     SVN_ERR(entry_has_local_mods(&modified, baton->db, local_abspath,
                                  db_kind, scratch_pool));
+  else
+    modified = FALSE;
 
   if (modified)
     {