PR: 53690
Submitted by: Mikhail T. <mi+apache aldan algebra com>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1442326 13f79535-47bb-0310-9956-
ffa450edef68
-*- coding: utf-8 -*-
Changes with Apache 2.5.0
+ *) core: Fix valgrind warning about uninitialized memory in argument to
+ semctl. PR 53690. [Mikhail T. <mi+apache aldan algebra com>]
+
*) mod_proxy_connect: Don't keepalive the connection to the client if the
backend closes the connection. PR 54474. [Pavel Mateja <pavel netsafe cz>]
};
#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;