summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-09-19 18:25:42 +0200
committerStefan Fritsch <sf@apache.org>2011-09-19 18:25:42 +0200
commit01ed21af9d4a60239d12f2fb183a804ad46459ea (patch)
treedfcc795128d8fc349b4cd7ebe35b8f12dc73f01d /CHANGES
parentPunctuation error. (diff)
downloadapache2-01ed21af9d4a60239d12f2fb183a804ad46459ea.tar.xz
apache2-01ed21af9d4a60239d12f2fb183a804ad46459ea.zip
Add wrappers for malloc, calloc, realloc that check for out of memory
situations. Use them in most places where malloc, and friends are used. This results in clean error messages in an out of memory situation instead of segfaulting or silently malfunctioning. In some places, it just allows to remove some logging code. PR 51568, PR 51569, PR 51571. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1172686 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 0fa1925048..10b6c0eb1f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -12,6 +12,10 @@ Changes with Apache 2.3.15
PR 51714. [Stefan Fritsch, Jim Jagielski, Ruediger Pluem, Eric Covener,
<lowprio20 gmail.com>]
+ *) Add wrappers for malloc, calloc, realloc that check for out of memory
+ situations and use them in many places. PR 51568, PR 51569, PR 51571.
+ [Stefan Fritsch]
+
*) Fix cross-compilation of mod_cgi/mod_cgid when APR_HAVE_STRUCT_RLIMIT is
false but RLIMIT_* are defined. PR51371. [Eric Covener]