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 2014/03/27 21:22:11 UTC

svn commit: r1582459 - /subversion/trunk/subversion/svn/list-cmd.c

Author: rhuijben
Date: Thu Mar 27 20:22:10 2014
New Revision: 1582459

URL: http://svn.apache.org/r1582459
Log:
* subversion/svn/list-cmd.c
  (svn_cl__list): Resolve potentially uninitialized variable usage problem.

Modified:
    subversion/trunk/subversion/svn/list-cmd.c

Modified: subversion/trunk/subversion/svn/list-cmd.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/list-cmd.c?rev=1582459&r1=1582458&r2=1582459&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/list-cmd.c (original)
+++ subversion/trunk/subversion/svn/list-cmd.c Thu Mar 27 20:22:10 2014
@@ -420,6 +420,8 @@ svn_cl__list(apr_getopt_t *os,
   if (seen_nonexistent_target)
     err = svn_error_create(SVN_ERR_ILLEGAL_TARGET, NULL,
           _("Could not list all targets because some targets don't exist"));
+  else
+    err = NULL;
 
   return svn_error_compose_create(externals_err, err);
 }