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

ext/standard/quot_print.c: Mark readonly string as const

This commit is contained in:
Gina Peter Bnayard
2024-08-13 17:53:34 +02:00
committed by Gina Peter Banyard
parent 5c191a45d9
commit 312f789e22

View File

@@ -141,7 +141,7 @@ PHPAPI zend_string *php_quot_print_encode(const unsigned char *str, size_t lengt
{
zend_ulong lp = 0;
unsigned char c, *d;
char *hex = "0123456789ABCDEF";
const char *hex = "0123456789ABCDEF";
zend_string *ret;
ret = zend_string_safe_alloc(3, (length + (((3 * length)/(PHP_QPRINT_MAXL-9)) + 1)), 0, 0);