Kaydet (Commit) cb5c881a authored tarafından Michael Meeks's avatar Michael Meeks

avoid using the new rdb reading logic for empty/non-existent directories

üst b7423cee
......@@ -333,7 +333,7 @@ Reference< registry::XSimpleRegistry > readRdbDirectory(
}
nXML++;
}
if (nXML == aURLs.size())
if (nXML > 0 && nXML == aURLs.size())
{
OSL_TRACE (OSL_LOG_PREFIX "no legacy rdbs in directory '%s'\n",
rtl::OUStringToOString( url, RTL_TEXTENCODING_UTF8 ).getStr());
......
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