From 477c2afb4821273c530de545441ac32fcfa55734 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Sat, 6 Jul 2024 23:07:36 +0200 Subject: [PATCH] Fix typo in simplexml.c --- ext/simplexml/simplexml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c index 6d0b2bb84f4..d3fee2952c6 100644 --- a/ext/simplexml/simplexml.c +++ b/ext/simplexml/simplexml.c @@ -717,7 +717,7 @@ static int sxe_prop_dim_exists(zend_object *object, zval *member, int check_empt } if (exists && check_empty == 1 && (!attr->children || !attr->children->content || !attr->children->content[0] || xmlStrEqual(attr->children->content, (const xmlChar *) "0")) ) { - /* Attribute with no content in it's text node */ + /* Attribute with no content in its text node */ exists = 0; } }