From 1f2344104fb22ef48b3a59382d8cf843d9ceb13a Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sun, 7 Apr 2002 10:56:30 +0000 Subject: [PATCH] fix for #16469 --- ext/standard/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/string.c b/ext/standard/string.c index fcec74a2ca..f6bda9a231 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -3330,7 +3330,7 @@ PHPAPI void php_strip_tags(char *rbuf, int len, int *stateptr, char *allow, int { char *tbuf, *buf, *p, *tp, *rp, c, lc; int br, i=0; - int state; + int state = 0; if (stateptr) state = *stateptr; -- 2.50.1