Kaydet (Commit) e753cd98 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1027278 silence Unchecked return value

Change-Id: I3f2aa0393876a146ed291ad9e10575312516527f
üst b4f2aff5
......@@ -132,7 +132,7 @@ namespace XPath
ouri = OUStringToOString(i->second, RTL_TEXTENCODING_UTF8);
xmlChar const *p = reinterpret_cast<xmlChar const *>(oprefix.getStr());
xmlChar const *u = reinterpret_cast<xmlChar const *>(ouri.getStr());
xmlXPathRegisterNs(ctx, p, u);
(void)xmlXPathRegisterNs(ctx, p, u);
++i;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment