You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2011/12/02 20:57:40 UTC

svn commit: r1209668 - /subversion/trunk/subversion/libsvn_delta/compat.c

Author: hwright
Date: Fri Dec  2 19:57:39 2011
New Revision: 1209668

URL: http://svn.apache.org/viewvc?rev=1209668&view=rev
Log:
* subversion/libsvn_delta/compat.c
  (delta_from_editor): Initialize uninitialized variable.

Modified:
    subversion/trunk/subversion/libsvn_delta/compat.c

Modified: subversion/trunk/subversion/libsvn_delta/compat.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_delta/compat.c?rev=1209668&r1=1209667&r2=1209668&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/compat.c (original)
+++ subversion/trunk/subversion/libsvn_delta/compat.c Fri Dec  2 19:57:39 2011
@@ -758,6 +758,7 @@ delta_from_editor(const svn_delta_editor
   eb->paths = apr_hash_make(pool);
   eb->edit_pool = pool;
   eb->found_abs_paths = found_abs_paths;
+  *eb->found_abs_paths = FALSE;
 
   eb->fetch_props_func = fetch_props_func;
   eb->fetch_props_baton = fetch_props_baton;