summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-09-25 21:19:16 +0200
committerMichael Stahl <mstahl@redhat.com>2012-09-26 12:57:27 +0200
commit8385aa5f73e4f6dda8a234240d03420e9a7da69e (patch)
tree6854d4e36ab674e2a519e039c4db8576c6177edf /svtools
parentgbuild: disable MSVC warning C4628 for C++: (diff)
downloadcore-8385aa5f73e4f6dda8a234240d03420e9a7da69e.tar.gz
core-8385aa5f73e4f6dda8a234240d03420e9a7da69e.zip
TransferableHelper: fix annoying assertion "bad pCharClass"
The % must be URI encoded, not acceptable. Change-Id: I1274170275d1a1432fb2f933cbd3c6ee8c35d436
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/misc/transfer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/misc/transfer.cxx b/svtools/source/misc/transfer.cxx
index 79a6412caf6d..8c41222d2193 100644
--- a/svtools/source/misc/transfer.cxx
+++ b/svtools/source/misc/transfer.cxx
@@ -181,7 +181,7 @@ static ::rtl::OUString ImplGetParameterString( const TransferableObjectDescripto
pToAccept[nBInd] = sal_False;
const char aQuotedParamChars[] =
- "()<>@,;:\\\"/[]?=!#$%&'*+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~. ";
+ "()<>@,;:\\\"/[]?=!#$&'*+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~. ";
for ( sal_Int32 nInd = 0; nInd < RTL_CONSTASCII_LENGTH(aQuotedParamChars); ++nInd )
{