Kaydet (Commit) a5247645 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Clang -Wdangling-else.

üst 84c9a4d5
......@@ -3089,7 +3089,9 @@ bool INetURLObject::parsePath(INetProtocol eScheme,
// Match <group>:
if (INetMIME::isAlpha(*pPos))
{
for (sal_Unicode const * p = pPos + 1;; ++p)
{
if (p == pEnd || *p == nQueryDelimiter
|| *p == nFragmentDelimiter)
{
......@@ -3100,7 +3102,11 @@ bool INetURLObject::parsePath(INetProtocol eScheme,
}
else if (!INetMIME::isAlphanumeric(*p) && *p != '+'
&& *p != '-' && *p != '.' && *p != '_')
{
break;
}
}
}
// Match <article>:
for (;;)
......
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