From: Moriyoshi Koizumi Date: Tue, 20 Jul 2004 19:35:38 +0000 (+0000) Subject: oops... X-Git-Tag: PRE_ZEND_VM_DISPATCH_PATCH~424 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e25a206e87d4432809db1d3d2853cc43a9884029;p=php oops... --- diff --git a/ext/standard/filters.c b/ext/standard/filters.c index 6fd4da1688..0b3fd00877 100644 --- a/ext/standard/filters.c +++ b/ext/standard/filters.c @@ -176,7 +176,7 @@ typedef struct _php_strip_tags_filter { static int php_strip_tags_filter_ctor(php_strip_tags_filter *inst, const char *allowed_tags, int allowed_tags_len, int persistent) { if (allowed_tags != NULL) { - if (NULL != (inst->allowed_tags = pemalloc(allowed_tags_len, persistent))) { + if (NULL == (inst->allowed_tags = pemalloc(allowed_tags_len, persistent))) { return FAILURE; } memcpy((char *)inst->allowed_tags, allowed_tags, allowed_tags_len);