]> granicus.if.org Git - php/commitdiff
- Fixed bug #54682 (Tidy::diagnose() NULL pointer dereference)
authorFelipe Pena <felipe@php.net>
Tue, 15 Nov 2011 15:16:20 +0000 (15:16 +0000)
committerFelipe Pena <felipe@php.net>
Tue, 15 Nov 2011 15:16:20 +0000 (15:16 +0000)
ext/tidy/tests/bug54682.phpt [new file with mode: 0644]
ext/tidy/tidy.c

diff --git a/ext/tidy/tests/bug54682.phpt b/ext/tidy/tests/bug54682.phpt
new file mode 100644 (file)
index 0000000..99f40cf
--- /dev/null
@@ -0,0 +1,13 @@
+--TEST--
+Tidy::diagnose() NULL pointer dereference
+--SKIPIF--
+<?php if (!extension_loaded("tidy")) print "skip"; ?>
+--FILE--
+<?php
+
+$nx = new Tidy("*");
+$nx->diagnose();
+
+?>
+--EXPECTF--
+Warning: tidy::__construct(): Cannot Load '*' into memory in %s on line %d
index 1ba910c9578ec0d75b53f4479655df2f3e4553c3..d06bbcdb2e7d23926099090d87cf09c791f57fb0 100644 (file)
@@ -1336,7 +1336,7 @@ static PHP_FUNCTION(tidy_diagnose)
 {
        TIDY_FETCH_OBJECT;
 
-       if (tidyRunDiagnostics(obj->ptdoc->doc) >= 0) {
+       if (tidyStatus(obj->ptdoc->doc) != 0 && tidyRunDiagnostics(obj->ptdoc->doc) >= 0) {
                tidy_doc_update_properties(obj TSRMLS_CC);
                RETURN_TRUE;
        }