aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/basic/oracle/qstring-traits.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/qt/basic/oracle/qstring-traits.hxx')
-rw-r--r--odb/qt/basic/oracle/qstring-traits.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/odb/qt/basic/oracle/qstring-traits.hxx b/odb/qt/basic/oracle/qstring-traits.hxx
index 729de62..c0b6775 100644
--- a/odb/qt/basic/oracle/qstring-traits.hxx
+++ b/odb/qt/basic/oracle/qstring-traits.hxx
@@ -53,13 +53,13 @@ namespace odb
is_null = false;
const QByteArray& a (v.toUtf8 ());
+
n = static_cast<std::size_t> (a.size ());
- //@@ Assert or throw?
- //
- assert (n <= c);
+ if (n > c)
+ n = c;
- std::memcpy (b, a.data (), n);
+ std::memcpy (b, a.constData (), n);
}
}
};