Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
5.12.0
-
Ubuntu 18.04 LTS 64 bit
-
885e4af1f4ba3f047c3d932a1a780ddbba481170 (qt/qtdeclarative/5.12)
Description
- Have a simple program running QJSEngine::evaluate (evaluate-cli.zip).
#include <QCoreApplication> #include <QFile> #include <QJSEngine> int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); if (argc < 2) return -1; QFile inFile(argv[1]); inFile.open(QFile::ReadOnly); QJSEngine().evaluate(inFile.readAll()); return 0; }
- Build it on Qt 5.12.
- Run the program passing the QTBUG-72734.js as parameter.
The program crashes.
When built on Qt 5.11.3, the program does not seem to crash.
Edit (Simon): This is the code that causes the crash:
=class{;n(){}
Backtrace:
Program received signal SIGSEGV, Segmentation fault. 0x00007ffff7bc0ae4 in QQmlJS::AST::ClassElementList::append (this=0x0, n=0x625000005230) at /home/simon/dev/qt-5.12/asan/qtbase/include/QtQml/5.12.0/QtQml/private/../../../../../../qtdeclarative/src/qml/parser/qqmljsast_p.h:2294 2294 n->next = next; Traceback (most recent call last): File "<string>", line 180, in <lambda> File "<string>", line 191, in on_stop File "<string>", line 222, in display File "<string>", line 582, in lines ValueError: invalid literal for int() with base 10: "Specified first line '2289' is ambiguous:" >>> bt #0 0x00007ffff7bc0ae4 in QQmlJS::AST::ClassElementList::append (this=0x0, n=0x625000005230) at /home/simon/dev/qt-5.12/asan/qtbase/include/QtQml/5.12.0/QtQml/private/../../../../../../qtdeclarative/src/qml/parser/qqmljsast_p.h:2294 #1 0x00007ffff7baf26c in QQmlJS::Parser::parse (this=0x7fffffffc650, startToken=119) at parser/qqmljs.g:3967 #2 0x00007ffff720f00a in QQmlJS::Parser::parseProgram (this=0x7fffffffc650) at parser/qqmljs.g:328 #3 0x00007ffff720c5e7 in QV4::Script::parse (this=0x607000000bf0) at jsruntime/qv4script.cpp:106
Attachments
Issue Links
- is required for
-
QTBUG-71580 The QML engine needs systematic fuzz testing
- Closed