summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/odbc/appendsqlwchars.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/odbc/appendsqlwchars.cxx')
-rw-r--r--connectivity/source/drivers/odbc/appendsqlwchars.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/connectivity/source/drivers/odbc/appendsqlwchars.cxx b/connectivity/source/drivers/odbc/appendsqlwchars.cxx
index c083c6157948..8a62db3305c8 100644
--- a/connectivity/source/drivers/odbc/appendsqlwchars.cxx
+++ b/connectivity/source/drivers/odbc/appendsqlwchars.cxx
@@ -26,9 +26,10 @@ void appendSQLWCHARs(OUStringBuffer & s, const sal_Unicode* d, sal_Int32 n)
BOOST_STATIC_ASSERT(sizeof (wchar_t) == 4);
void appendSQLWCHARs(OUStringBuffer & s, const wchar_t* d, sal_Int32 n)
{
- for (sal_Int32 i = 0; i < n; ++i)
+ const wchar_t * const end = d + n;
+ for (; d < end; ++d)
{
- s.appendUtf32(d[i]);
+ s.appendUtf32(*d);
}
}
#endif