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:
committed by
Anatol Belski
parent
6e48597375
commit
9374ba35c4
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user