You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by sf...@apache.org on 2012/09/07 21:03:58 UTC

svn commit: r1382129 - in /apr/apr-util/branches/1.5.x: CHANGES test/testmemcache.c

Author: sf
Date: Fri Sep  7 19:03:58 2012
New Revision: 1382129

URL: http://svn.apache.org/viewvc?rev=1382129&view=rev
Log:
Re-add initialization of variable that was accidentally removed in r1207683

Submitted by: Peter Poeml <peter poeml de>
PR: 52705

Modified:
    apr/apr-util/branches/1.5.x/CHANGES
    apr/apr-util/branches/1.5.x/test/testmemcache.c

Modified: apr/apr-util/branches/1.5.x/CHANGES
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/CHANGES?rev=1382129&r1=1382128&r2=1382129&view=diff
==============================================================================
--- apr/apr-util/branches/1.5.x/CHANGES [utf-8] (original)
+++ apr/apr-util/branches/1.5.x/CHANGES [utf-8] Fri Sep  7 19:03:58 2012
@@ -1,6 +1,8 @@
                                                      -*- coding: utf-8 -*-
 Changes with APR-util 1.5.1
 
+  *) testmemcache: Fix uninitialized variable. [Peter Poeml <peter poeml de>]
+
   *) MinGW: Support shared builds of apr-util when apr is shared.
      PR 46175.  [Carlo Bramini <carlo.bramix libero.it>, Jeff Trawick]
 

Modified: apr/apr-util/branches/1.5.x/test/testmemcache.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.5.x/test/testmemcache.c?rev=1382129&r1=1382128&r2=1382129&view=diff
==============================================================================
--- apr/apr-util/branches/1.5.x/test/testmemcache.c (original)
+++ apr/apr-util/branches/1.5.x/test/testmemcache.c Fri Sep  7 19:03:58 2012
@@ -433,6 +433,7 @@ static void test_memcache_multiget(abts_
   rv = apr_memcache_add_server(memcache, server);
   ABTS_ASSERT(tc, "server add failed", rv == APR_SUCCESS);
   
+  values = apr_hash_make(p);
   tdata = apr_hash_make(p);
   
   create_test_hash(pool, tdata);