diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2020-02-03 23:32:46 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2020-02-03 23:33:20 +0100 |
commit | 3fb41c202801ef26cd20c5778c17a899913eb3d1 (patch) | |
tree | 772c165917c9d03826bc4d2215d8d25e7592611f /ext/libxml/libxml.c | |
parent | 58b17906f512866c2e34844fa497ecdf7f1e1e3d (diff) | |
parent | fe1bfb78d65d28dd151da417477a0cee51de8afb (diff) | |
download | php-git-3fb41c202801ef26cd20c5778c17a899913eb3d1.tar.gz |
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3:
Fix #79191: Error in SoapClient ctor disables DOMDocument::save()
Diffstat (limited to 'ext/libxml/libxml.c')
-rw-r--r-- | ext/libxml/libxml.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/libxml/libxml.c b/ext/libxml/libxml.c index 360d1999e7..c024e16670 100644 --- a/ext/libxml/libxml.c +++ b/ext/libxml/libxml.c @@ -382,9 +382,6 @@ static int php_libxml_streams_IO_read(void *context, char *buffer, int len) static int php_libxml_streams_IO_write(void *context, const char *buffer, int len) { - if (CG(unclean_shutdown)) { - return -1; - } return php_stream_write((php_stream*)context, buffer, len); } |