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 2012/11/13 13:46:49 UTC

svn commit: r1408706 - /subversion/trunk/subversion/svnmucc/svnmucc.c

Author: rhuijben
Date: Tue Nov 13 12:46:48 2012
New Revision: 1408706

URL: http://svn.apache.org/viewvc?rev=1408706&view=rev
Log:
* subversion/svnmucc/svnmucc.c
  (main): Initialize the action struct cleared.

Modified:
    subversion/trunk/subversion/svnmucc/svnmucc.c

Modified: subversion/trunk/subversion/svnmucc/svnmucc.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnmucc/svnmucc.c?rev=1408706&r1=1408705&r2=1408706&view=diff
==============================================================================
--- subversion/trunk/subversion/svnmucc/svnmucc.c (original)
+++ subversion/trunk/subversion/svnmucc/svnmucc.c Tue Nov 13 12:46:48 2012
@@ -1145,7 +1145,7 @@ main(int argc, const char **argv)
     {
       int j, num_url_args;
       const char *action_string = APR_ARRAY_IDX(action_args, i, const char *);
-      struct action *action = apr_palloc(pool, sizeof(*action));
+      struct action *action = apr_pcalloc(pool, sizeof(*action));
 
       /* First, parse the action. */
       if (! strcmp(action_string, "mv"))