1
0
mirror of https://github.com/php/php-src.git synced 2026-03-31 20:53:00 +02:00

MFH: fix gcc-2.95 problems (reported by Adam Maccabee Trachtenberg)

This commit is contained in:
Antony Dovgal
2005-05-11 20:04:39 +00:00
parent 85afcb802d
commit 1887ae79d6

View File

@@ -1842,10 +1842,10 @@ static void soap_server_fault(char* code, char* string, char *actor, zval* detai
static void soap_error_handler(int error_num, const char *error_filename, const uint error_lineno, const char *format, va_list args)
{
TSRMLS_FETCH();
zend_bool _old_in_compilation = CG(in_compilation);
zend_bool _old_in_execution = EG(in_execution);
zend_execute_data *_old_current_execute_data = EG(current_execute_data);
TSRMLS_FETCH();
if (!SOAP_GLOBAL(use_soap_error_handler)) {
old_error_handler(error_num, error_filename, error_lineno, format, args);