summaryrefslogtreecommitdiff
path: root/Zend/zend.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-06-02 12:21:49 +0000
committerZeev Suraski <zeev@php.net>2000-06-02 12:21:49 +0000
commit8a8c3eafc8760efd0cac6fa40ba198dacb036e96 (patch)
treec4eeaa78dd11ac6cf7e7a1b18f5f3a904bd61013 /Zend/zend.c
parent22e9ff476aa8ab4f68cf568e9ccf3216f26b6a17 (diff)
downloadphp-git-8a8c3eafc8760efd0cac6fa40ba198dacb036e96.tar.gz
Nuke the old error code, use the new one
Diffstat (limited to 'Zend/zend.c')
-rw-r--r--Zend/zend.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/Zend/zend.c b/Zend/zend.c
index b95b006e04..d1677088a0 100644
--- a/Zend/zend.c
+++ b/Zend/zend.c
@@ -47,11 +47,7 @@ ZEND_API void (*zend_ticks_function)(int ticks);
static void (*zend_message_dispatcher_p)(long message, void *data);
static int (*zend_get_ini_entry_p)(char *name, uint name_length, zval *contents);
-#if ZEND_NEW_ERROR_HANDLING
static void (*zend_error_cb)(int type, const char *error_filename, const uint error_lineno, const char *format, va_list args);
-#else
-ZEND_API void (*zend_error_cb)(int type, const char *format, ...);
-#endif
#ifdef ZTS
ZEND_API int compiler_globals_id;
@@ -498,9 +494,6 @@ ZEND_API int zend_get_ini_entry(char *name, uint name_length, zval *contents)
}
-
-#if ZEND_NEW_ERROR_HANDLING
-
#define ZEND_ERROR_BUFFER_SIZE 1024
ZEND_API void zend_error(int type, const char *format, ...)
@@ -552,6 +545,7 @@ ZEND_API void zend_error(int type, const char *format, ...)
va_start(args, format);
+
/* if we don't have a user defined error handler */
if (!EG(user_error_handler)) {
zend_error_cb(type, error_filename, error_lineno, format, args);
@@ -571,8 +565,12 @@ ZEND_API void zend_error(int type, const char *format, ...)
INIT_PZVAL(&error_type);
error_message.value.str.val = (char *) emalloc(ZEND_ERROR_BUFFER_SIZE);
- /* error_message.value.str.len = vsnprintf(error_message->value.str.val, error_message->value.str.len-1, format, args); */
+#ifdef HAVE_VSNPRINTF
+ error_message.value.str.len = vsnprintf(error_message.value.str.val, ZEND_ERROR_BUFFER_SIZE, format, args);
+#else
+ /* This is risky... */
error_message.value.str.len = vsprintf(error_message.value.str.val, format, args);
+#endif
error_message.type = IS_STRING;
error_type.value.lval = type;
@@ -596,5 +594,3 @@ ZEND_API void zend_error(int type, const char *format, ...)
va_end(args);
}
-#endif
-