summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harvey <aharvey@php.net>2010-07-19 13:38:53 +0000
committerAdam Harvey <aharvey@php.net>2010-07-19 13:38:53 +0000
commit32e2c573d5b5a4333b0f8767721e1e70a7445180 (patch)
tree6a056ad5da7b354ea0555bed098157229bb51327
parent8370d1a8645538d115e262240f354bd61760ae3f (diff)
downloadphp-git-32e2c573d5b5a4333b0f8767721e1e70a7445180.tar.gz
MFH: fix for bug #52317 (Segmentation fault when using mail() on a rhel 4.x
(only 64 bit)).
-rw-r--r--NEWS2
-rw-r--r--ext/standard/mail.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 4b7cfb6cd9..ef345584ae 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? Jul 2010, PHP 5.2.14
+- Fixed bug #52317 (Segmentation fault when using mail() on a rhel 4.x (only 64
+ bit)). (Adam)
15 Jul 2010, PHP 5.2.14RC3
diff --git a/ext/standard/mail.c b/ext/standard/mail.c
index 0a4e6befce..55398bcd5a 100644
--- a/ext/standard/mail.c
+++ b/ext/standard/mail.c
@@ -39,6 +39,7 @@
#include "php_mail.h"
#include "php_ini.h"
+#include "php_string.h"
#include "safe_mode.h"
#include "exec.h"