aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4engine.cpp
diff options
context:
space:
mode:
authorAndreas Hartmetz <ahartmetz@gmail.com>2025-09-11 22:06:22 +0200
committerAndreas Hartmetz <ahartmetz@gmail.com>2025-09-14 18:57:59 +0200
commit5a2f0c0c84e449407286c3bc976e159a1b46097d (patch)
tree7ea3dbf4ac2d6767a396d7fbc1c09353c0d3a5eb /src/qml/jsruntime/qv4engine.cpp
parent9494ecafb9b378d2336bdf2257a5089919532416 (diff)
Fix build with V4_USE_VALGRIND defined
Change-Id: I3f3a58771d2721dc822add922c16a7efab3024ab Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4engine.cpp')
-rw-r--r--src/qml/jsruntime/qv4engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index a2f6565c4a..f7ab2bd72e 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -383,7 +383,7 @@ ExecutionEngine::ExecutionEngine(QJSEngine *jsEngine)
/* writable */ true, /* executable */ false, /* includesGuardPages */ true);
jsStackBase = (Value *)jsStack->base();
#ifdef V4_USE_VALGRIND
- VALGRIND_MAKE_MEM_UNDEFINED(jsStackBase, m_maxJSStackSize + 256*1024);
+ VALGRIND_MAKE_MEM_UNDEFINED(jsStackBase, s_maxJSStackSize + 256*1024);
#endif
jsStackTop = jsStackBase;