X-Git-Url: https://git.tld-linux.org/?p=packages%2Fphp.git;a=blobdiff_plain;f=php-fcgi-error_log-no-newlines.patch;h=83c45096ac141184734c26869bed7f939fbe5f9e;hp=321452f97514890793464c640e7697a9b99d0646;hb=HEAD;hpb=a84fb7d2e9b9cdae9cb2d9e129019a05cb413adc diff --git a/php-fcgi-error_log-no-newlines.patch b/php-fcgi-error_log-no-newlines.patch deleted file mode 100644 index 321452f..0000000 --- a/php-fcgi-error_log-no-newlines.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- php-5.6.6/sapi/cgi/cgi_main.c.orig 2015-02-24 12:35:21.097436930 +0100 -+++ php-5.6.6/sapi/cgi/cgi_main.c 2015-02-24 12:38:49.851431030 +0100 -@@ -739,10 +739,7 @@ - int ret, len = strlen(message); - char *buf = malloc(len+2); - -- memcpy(buf, message, len); -- memcpy(buf + len, "\n", sizeof("\n")); -- ret = fcgi_write(request, FCGI_STDERR, buf, len + 1); -- free(buf); -+ fcgi_write(request, FCGI_STDERR, message, len); - if (ret < 0) { - php_handle_aborted_connection(); - }