https://bugzilla.redhat.com/show_bug.cgi?id=823060

--- Comment #4 from Shawn Iwinski <[email protected]> ---
Issue: XSD file installed as doc, but referenced by code.

-- XSD file --
Symfony/Component/Routing/Loader/schema/routing/routing-1.0.xsd

-- Code --
    protected function validate(\DOMDocument $dom)
    {
        $location = __DIR__.'/schema/routing/routing-1.0.xsd';

        $current = libxml_use_internal_errors(true);
        if (!$dom->schemaValidate($location)) {
            throw new \InvalidArgumentException(implode("\n",
$this->getXmlErrors()));
        }
        libxml_use_internal_errors($current);
    }



See original finding of this issue at
https://bugzilla.redhat.com/show_bug.cgi?id=823046#c8

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
package-review mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/package-review

Reply via email to