aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/basic/oracle/qbyte-array-traits.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-11-15 11:57:06 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-11-16 11:15:53 +0200
commitf10c9f20e8d32330c9f4ab46a638ab5556cb61b8 (patch)
tree3fbb2bf1c01918999bf3282456ddb06a726860c5 /odb/qt/basic/oracle/qbyte-array-traits.hxx
parentd59ac6134105611fb8d0d2349f0acf720c88e7d6 (diff)
Truncate excess QString and QByteArray data mapped to CHAR and RAW types
Diffstat (limited to 'odb/qt/basic/oracle/qbyte-array-traits.hxx')
-rw-r--r--odb/qt/basic/oracle/qbyte-array-traits.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/odb/qt/basic/oracle/qbyte-array-traits.hxx b/odb/qt/basic/oracle/qbyte-array-traits.hxx
index 58807b9..3d99cd7 100644
--- a/odb/qt/basic/oracle/qbyte-array-traits.hxx
+++ b/odb/qt/basic/oracle/qbyte-array-traits.hxx
@@ -59,11 +59,10 @@ namespace odb
n = static_cast<std::size_t> (v.size ());
- //@@ Assert or throw?
- //
- assert (n <= c);
+ if (n > c)
+ n = c;
- std::memcpy (b, v.data (), n);
+ std::memcpy (b, v.constData (), n);
}
}
};