diff --git a/xml/xml-parse.lisp b/xml/xml-parse.lisp index 7e18e43..eb8e338 100644 --- a/xml/xml-parse.lisp +++ b/xml/xml-parse.lisp @@ -693,7 +693,7 @@ (defmethod sax:xml-base ((parser cxml-parser)) (let ((uri (car (base-stack (slot-value parser 'ctx))))) - (if (stringp uri) + (if (or (null uri) (stringp uri)) uri (puri:render-uri uri nil))))