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 2010/06/07 15:42:26 UTC

svn commit: r952223 - /subversion/trunk/subversion/libsvn_wc/util.c

Author: hwright
Date: Mon Jun  7 13:42:26 2010
New Revision: 952223

URL: http://svn.apache.org/viewvc?rev=952223&view=rev
Log:
* subversion/libsvn_wc/util.c:
  (svn_wc__status2_from_3): Followup to r950010 by ensuring a variable is
  initialized.  This should fix the swig-rb bindings tests.

Modified:
    subversion/trunk/subversion/libsvn_wc/util.c

Modified: subversion/trunk/subversion/libsvn_wc/util.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/util.c?rev=952223&r1=952222&r2=952223&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/util.c (original)
+++ subversion/trunk/subversion/libsvn_wc/util.c Mon Jun  7 13:42:26 2010
@@ -552,7 +552,7 @@ svn_wc__status2_from_3(svn_wc_status2_t 
                        apr_pool_t *result_pool,
                        apr_pool_t *scratch_pool)
 {
-  const svn_wc_entry_t *entry;
+  const svn_wc_entry_t *entry = NULL;
   const svn_wc_conflict_description2_t *tree_conflict;
   svn_wc_conflict_description_t *old_tree_conflict;