|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-07 18:02 UTC] zeev@php.net
[2001-06-01 16:10 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 19:00:02 2025 UTC |
File output.c No checks whether it is possible to call this php_body_write or not. During shutdown of server calling from oci_debug( ... ) causes crash on the Win32 system by coalling NULL entry. PHPAPI int php_body_write(const char *str, uint str_length) { OLS_FETCH(); return OG(php_body_write)(str, str_length); } sugest to change it to: if( OG(php_body_write) ) { return OG(php_body_write)(str, str_length); } return 0;