]> granicus.if.org Git - php/commitdiff
Merge branch 'PHP-5.4' into PHP-5.5
authorStanislav Malyshev <stas@php.net>
Mon, 29 Jun 2015 03:23:00 +0000 (20:23 -0700)
committerStanislav Malyshev <stas@php.net>
Mon, 29 Jun 2015 03:23:00 +0000 (20:23 -0700)
* PHP-5.4:
  Move strlen() check to php_mail_detect_multiple_crlf()
  Fixed Bug #69874 : Can't set empty additional_headers for mail()

1  2 
ext/standard/mail.c

index 09e0a5546bb238f3b36c357ee1264f2f15d5309c,75bd423f8dcde03206f5aeefccab21d1508a550a..17c09dbcaaaefb9632077b488efaecab50c6b3fc
@@@ -225,8 -223,9 +225,8 @@@ void php_mail_log_to_file(char *filenam
  
  static int php_mail_detect_multiple_crlf(char *hdr) {
        /* This function detects multiple/malformed multiple newlines. */
 -      size_t len;
  
-       if (!hdr) {
+       if (!hdr || !strlen(hdr)) {
                return 0;
        }