mirror of
https://github.com/php/php-src.git
synced 2025-01-23 20:23:31 +08:00
Make sure value is initialized
This commit is contained in:
parent
756ee95605
commit
3f258e6b46
@ -57,7 +57,7 @@ ZEND_API void zend_html_putc(char c)
|
||||
ZEND_API void zend_html_puts(const char *s, uint len TSRMLS_DC)
|
||||
{
|
||||
const unsigned char *ptr = (const unsigned char*)s, *end = ptr + len;
|
||||
unsigned char *filtered;
|
||||
unsigned char *filtered = NULL;
|
||||
size_t filtered_len;
|
||||
|
||||
if (LANG_SCNG(output_filter)) {
|
||||
|
Loading…
Reference in New Issue
Block a user