diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-12 04:08:14 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-12 04:08:14 (GMT) |
commit | df861cb0f6d6ae0b6971342adc199be7d7ec6009 (patch) | |
tree | 83b7bd93603f8819e7ac05cb0081643e76415dec /src | |
parent | 45ef66f690966eb39b3b8ebef1708e1b87c55140 (diff) | |
download | Qt-df861cb0f6d6ae0b6971342adc199be7d7ec6009.zip Qt-df861cb0f6d6ae0b6971342adc199be7d7ec6009.tar.gz Qt-df861cb0f6d6ae0b6971342adc199be7d7ec6009.tar.bz2 |
Fix crash on 32-bit platforms
Diffstat (limited to 'src')
-rw-r--r-- | src/declarative/qml/qdeclarativeobjectscriptclass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp index 68780b6..32a28fe 100644 --- a/src/declarative/qml/qdeclarativeobjectscriptclass.cpp +++ b/src/declarative/qml/qdeclarativeobjectscriptclass.cpp @@ -588,7 +588,7 @@ private: inline void cleanup(); - char data[2 * sizeof(void *)]; + void *data[4]; int type; }; } |