1
0
mirror of https://github.com/php/php-src.git synced 2026-04-30 03:33:17 +02:00

Use format string

This commit is contained in:
Xinchen Hui
2015-12-12 18:45:11 -08:00
committed by Anatol Belski
parent 6e48597375
commit 9374ba35c4
+1 -1
View File
@@ -218,7 +218,7 @@ static void zend_throw_or_error(int fetch_type, zend_class_entry *exception_ce,
zend_vspprintf(&message, 0, format, va);
if (fetch_type & ZEND_FETCH_CLASS_EXCEPTION) {
zend_throw_error(exception_ce, message);
zend_throw_error(exception_ce, "%s", message);
} else {
zend_error(E_ERROR, "%s", message);
}