You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/12/25 18:41:52 UTC

svn commit: r1425759 - /subversion/trunk/tools/client-side/svn-bench/null-log-cmd.c

Author: stefan2
Date: Tue Dec 25 17:41:52 2012
New Revision: 1425759

URL: http://svn.apache.org/viewvc?rev=1425759&view=rev
Log:
Fix bogus output in 'svn-bench null-log'.

* tools/client-side/svn-bench/null-log-cmd.c
  (svn_cl__null_log): add missing initialization

Modified:
    subversion/trunk/tools/client-side/svn-bench/null-log-cmd.c

Modified: subversion/trunk/tools/client-side/svn-bench/null-log-cmd.c
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/client-side/svn-bench/null-log-cmd.c?rev=1425759&r1=1425758&r2=1425759&view=diff
==============================================================================
--- subversion/trunk/tools/client-side/svn-bench/null-log-cmd.c (original)
+++ subversion/trunk/tools/client-side/svn-bench/null-log-cmd.c Tue Dec 25 17:41:52 2012
@@ -134,7 +134,7 @@ svn_cl__null_log(apr_getopt_t *os,
   svn_cl__opt_state_t *opt_state = ((svn_cl__cmd_baton_t *) baton)->opt_state;
   svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx;
   apr_array_header_t *targets;
-  struct log_receiver_baton lb;
+  struct log_receiver_baton lb = { 0 };
   const char *target;
   int i;
   apr_array_header_t *revprops;