]> granicus.if.org Git - php/commitdiff
Fix ZTS build and warnings
authorMarcus Boerger <helly@php.net>
Wed, 9 Apr 2003 19:14:44 +0000 (19:14 +0000)
committerMarcus Boerger <helly@php.net>
Wed, 9 Apr 2003 19:14:44 +0000 (19:14 +0000)
ext/domxml/php_domxml.c

index fc3b68b839a278905b2cc43ef0f3b14a44c8ccf8..27e41b5d97c77847306df05588c45586915f18bd 100644 (file)
@@ -606,6 +606,7 @@ static inline void node_wrapper_free(xmlNodePtr node)
 {
        zval *wrapper, **handle;
        int type, refcount = 0;
+       TSRMLS_FETCH();
 
        if (!node) {
                return;
@@ -1828,7 +1829,7 @@ PHP_FUNCTION(domxml_attr_value)
        DOMXML_NO_ARGS();
 
        /* RETURN_STRING((char *) xmlNodeGetContent((xmlNodePtr) attrp), 1); */
-       if (content = xmlNodeGetContent((xmlNodePtr) attrp)) {
+       if ((content = xmlNodeGetContent((xmlNodePtr) attrp)) != NULL) {
                RETVAL_STRING(content,1);
        } else {
                RETURN_EMPTY_STRING();
@@ -1909,7 +1910,7 @@ PHP_FUNCTION(domxml_pi_data)
        DOMXML_NO_ARGS();
 
        /* RETURN_STRING(xmlNodeGetContent(nodep), 1); */
-       if (content = xmlNodeGetContent(nodep)) {
+       if ((content = xmlNodeGetContent(nodep)) != NULL) {
                RETVAL_STRING(content,1);
        } else {
                RETURN_EMPTY_STRING();