From: Stefan Fritsch Date: Mon, 4 Feb 2013 20:15:10 +0000 (+0000) Subject: Fix valgrind warning about uninitialized memory in argument to semctl X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=728709bcb84ca8bf2202078f9ee470f2f8c48533;p=thirdparty%2Fapache%2Fhttpd.git Fix valgrind warning about uninitialized memory in argument to semctl PR: 53690 Submitted by: Mikhail T. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1442326 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index b7c0cbc7b9c..b6d1469e267 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ -*- coding: utf-8 -*- Changes with Apache 2.5.0 + *) core: Fix valgrind warning about uninitialized memory in argument to + semctl. PR 53690. [Mikhail T. ] + *) mod_proxy_connect: Don't keepalive the connection to the client if the backend closes the connection. PR 54474. [Pavel Mateja ] diff --git a/os/unix/unixd.c b/os/unix/unixd.c index 2a953f0f385..a86630f39b4 100644 --- a/os/unix/unixd.c +++ b/os/unix/unixd.c @@ -241,7 +241,7 @@ AP_DECLARE(apr_status_t) ap_unixd_set_proc_mutex_perms(apr_proc_mutex_t *pmutex) }; #endif union semun ick; - struct semid_ds buf; + struct semid_ds buf = { { 0 } }; apr_os_proc_mutex_get(&ospmutex, pmutex); buf.sem_perm.uid = ap_unixd_config.user_id;