summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorStephan Bergmann <sb@openoffice.org>2002-09-06 13:36:51 +0000
committerStephan Bergmann <sb@openoffice.org>2002-09-06 13:36:51 +0000
commit2e3e78b3c75fc650f4ec25e3b70a538c087ece15 (patch)
treea1d4b85c514902b4c1c0501601f61d991dfd71f8 /tools/source
parente912e38678779b19acbcf7f2fd3e4cb05c79ee62 (diff)
#103052# Fixed bug introduced with 1.32.
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/fsys/urlobj.cxx77
1 files changed, 40 insertions, 37 deletions
diff --git a/tools/source/fsys/urlobj.cxx b/tools/source/fsys/urlobj.cxx
index 987f535d6890..3ad9cc6ee8a2 100644
--- a/tools/source/fsys/urlobj.cxx
+++ b/tools/source/fsys/urlobj.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: urlobj.cxx,v $
*
- * $Revision: 1.33 $
+ * $Revision: 1.34 $
*
- * last change: $Author: sb $ $Date: 2002-09-06 13:29:03 $
+ * last change: $Author: sb $ $Date: 2002-09-06 14:36:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -2254,43 +2254,46 @@ bool INetURLObject::parseHost(sal_Unicode const * pBegin,
if (pBegin < pEnd)
{
sal_Unicode const * p = pBegin;
- if ((!parseHost(p, pEnd, bOctets, eMechanism, eCharset, aTheCanonic)
- || p != pEnd)
- && bNetBiosName)
- {
- aTheCanonic.Erase();
- while (pBegin < pEnd)
+ if (!parseHost(p, pEnd, bOctets, eMechanism, eCharset, aTheCanonic)
+ || p != pEnd)
+ if (bNetBiosName)
{
- EscapeType eEscapeType;
- sal_uInt32 nUTF32 = getUTF32(pBegin, pEnd, bOctets, '%',
- eMechanism, eCharset, eEscapeType);
- if (!INetMIME::isVisible(nUTF32))
- return false;
- if (!INetMIME::isAlphanumeric(nUTF32))
- switch (nUTF32)
- {
- case '"':
- case '*':
- case '+':
- case ',':
- case '/':
- case ':':
- case ';':
- case '<':
- case '=':
- case '>':
- case '?':
- case '[':
- case '\\':
- case ']':
- case '`':
- case '|':
- return false;;
- }
- appendUCS4(aTheCanonic, nUTF32, eEscapeType, bOctets, PART_URIC,
- '%', eCharset, true);
+ aTheCanonic.Erase();
+ while (pBegin < pEnd)
+ {
+ EscapeType eEscapeType;
+ sal_uInt32 nUTF32 = getUTF32(pBegin, pEnd, bOctets, '%',
+ eMechanism, eCharset,
+ eEscapeType);
+ if (!INetMIME::isVisible(nUTF32))
+ return false;
+ if (!INetMIME::isAlphanumeric(nUTF32))
+ switch (nUTF32)
+ {
+ case '"':
+ case '*':
+ case '+':
+ case ',':
+ case '/':
+ case ':':
+ case ';':
+ case '<':
+ case '=':
+ case '>':
+ case '?':
+ case '[':
+ case '\\':
+ case ']':
+ case '`':
+ case '|':
+ return false;;
+ }
+ appendUCS4(aTheCanonic, nUTF32, eEscapeType, bOctets,
+ PART_URIC, '%', eCharset, true);
+ }
}
- }
+ else
+ return false;
}
*pCanonic = aTheCanonic;
return true;