From: Lars Knoll Date: Thu, 10 Oct 2013 09:29:19 +0000 (+0200) Subject: Mark strings stored in the lookups X-Git-Tag: upstream/5.2.1~258 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=979e625dc1ff257c1793bbd7ebd8001c25a11872;p=platform%2Fupstream%2Fqtdeclarative.git Mark strings stored in the lookups Change-Id: I4cb72a3eee9f87305316137b0a1bfd4a003de840 Reviewed-by: Simon Hausmann --- diff --git a/src/qml/compiler/qv4compileddata.cpp b/src/qml/compiler/qv4compileddata.cpp index 5c1c418..cd46730 100644 --- a/src/qml/compiler/qv4compileddata.cpp +++ b/src/qml/compiler/qv4compileddata.cpp @@ -171,6 +171,8 @@ void CompilationUnit::markObjects() for (int i = 0; i < runtimeFunctions.count(); ++i) if (runtimeFunctions[i]) runtimeFunctions[i]->mark(); + for (int i = 0; i < data->lookupTableSize; ++i) + runtimeLookups[i].name->mark(); } QString Binding::valueAsString(const Unit *unit) const