summaryrefslogtreecommitdiff
path: root/unoxml/source
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source')
-rw-r--r--unoxml/source/rdf/librdf_repository.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx
index cbdbae5116dc..b7333f6fb222 100644
--- a/unoxml/source/rdf/librdf_repository.cxx
+++ b/unoxml/source/rdf/librdf_repository.cxx
@@ -105,8 +105,7 @@ bool isInternalContext(librdf_node *i_pNode) throw ()
OSL_ENSURE(pURI, "isInternalContext: URI null");
if (pURI) {
unsigned char *pContextURI(librdf_uri_as_string(pURI));
- OSL_ENSURE(pContextURI,
- "isInternalContext: URI string null");
+ assert(pContextURI && "isInternalContext: URI string null");
// if prefix matches reserved uri, it is RDFa context
if (!strncmp(reinterpret_cast<char *>(pContextURI),
s_nsOOo, sizeof(s_nsOOo)-1)) {