summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorBradley T. Hughes <bradley.hughes@nokia.com>2011-09-23 12:29:18 +0200
committerQt by Nokia <qt-info@nokia.com>2011-09-23 13:42:22 +0200
commita219b8f3822a00e9bc2ae18419fa774355bb90b3 (patch)
tree4ccdb6b3a0caa0224129707de7bc6fa29a3fd7d8 /src/corelib/tools
parentea546c05f13858ca99bb3d8342131cae39d627c2 (diff)
Fix QString and QByteArray reserve() and squeeze()
These functions should not take care not to unconditionally set the capacityReserved private member, since the d may be referencing the const shared_null or shared_empty which live in read-only memory. The squeeze() methods check for ref > 1 instead of ref != 1 to prevent detaching from the shared_null/shared_empty unnecessarily; the shared_null/shared_empty ref count is -1, meaning squeeze() will never detach from it. Change-Id: Id3f1725a6f08b3a462343640a47bbe78f08ca7e7 Rubberstamped-by: Lars Knoll Reviewed-on: http://codereview.qt-project.org/5454 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qbytearray.h20
-rw-r--r--src/corelib/tools/qstring.h26
2 files changed, 42 insertions, 4 deletions
diff --git a/src/corelib/tools/qbytearray.h b/src/corelib/tools/qbytearray.h
index 3bb26ba21e..3ebeb3c340 100644
--- a/src/corelib/tools/qbytearray.h
+++ b/src/corelib/tools/qbytearray.h
@@ -439,10 +439,26 @@ inline int QByteArray::capacity() const
{ return d->alloc; }
inline void QByteArray::reserve(int asize)
-{ if (d->ref != 1 || asize > int(d->alloc)) realloc(asize); d->capacityReserved = true; }
+{
+ if (d->ref != 1 || asize > int(d->alloc))
+ realloc(asize);
+
+ if (!d->capacityReserved) {
+ // cannot set unconditionally, since d could be the shared_null/shared_empty (which is const)
+ d->capacityReserved = true;
+ }
+}
inline void QByteArray::squeeze()
-{ if (d->ref != 1 || d->size < int(d->alloc)) realloc(d->size); d->capacityReserved = false; }
+{
+ if (d->ref > 1 || d->size < int(d->alloc))
+ realloc(d->size);
+
+ if (d->capacityReserved) {
+ // cannot set unconditionally, since d could be the shared_null/shared_empty (which is const)
+ d->capacityReserved = false;
+ }
+}
class Q_CORE_EXPORT QByteRef {
QByteArray &a;
diff --git a/src/corelib/tools/qstring.h b/src/corelib/tools/qstring.h
index 209994de16..5009686d27 100644
--- a/src/corelib/tools/qstring.h
+++ b/src/corelib/tools/qstring.h
@@ -192,7 +192,7 @@ public:
int capacity() const;
inline void reserve(int size);
- inline void squeeze() { if (d->size < int(d->alloc) || d->ref != 1) realloc(); d->capacityReserved = false;}
+ inline void squeeze();
inline const QChar *unicode() const;
inline QChar *data();
@@ -849,7 +849,29 @@ inline void QCharRef::setCell(uchar acell) { QChar(*this).setCell(acell); }
inline QString::QString() : d(const_cast<Data *>(&shared_null.str)) {}
inline QString::~QString() { if (!d->ref.deref()) free(d); }
-inline void QString::reserve(int asize) { if (d->ref != 1 || asize > int(d->alloc)) realloc(asize); d->capacityReserved = true;}
+
+inline void QString::reserve(int asize)
+{
+ if (d->ref != 1 || asize > int(d->alloc))
+ realloc(asize);
+
+ if (!d->capacityReserved) {
+ // cannot set unconditionally, since d could be the shared_null/shared_empty (which is const)
+ d->capacityReserved = true;
+ }
+}
+
+inline void QString::squeeze()
+{
+ if (d->ref > 1 || d->size < int(d->alloc))
+ realloc();
+
+ if (d->capacityReserved) {
+ // cannot set unconditionally, since d could be the shared_null/shared_empty (which is const)
+ d->capacityReserved = false;
+ }
+}
+
inline QString &QString::setUtf16(const ushort *autf16, int asize)
{ return setUnicode(reinterpret_cast<const QChar *>(autf16), asize); }
inline QCharRef QString::operator[](int i)