]> TLD Linux GIT Repositories - packages/php.git/blobdiff - php-fcgi-error_log-no-newlines.patch
- updated to 8.3.6
[packages/php.git] / php-fcgi-error_log-no-newlines.patch
diff --git a/php-fcgi-error_log-no-newlines.patch b/php-fcgi-error_log-no-newlines.patch
deleted file mode 100644 (file)
index 321452f..0000000
+++ /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();
-                       }