Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
None
-
2.0.1, 3.1.0, Some future release
-
None
-
windows 10
Description
The QTIFW crashes in the PerformInstallationForm on the windows-platform when the installer-window loses the focus before changing to PerformInstallationPage. The reason is a missing check for a NULL-pointer around line 190 in performinstallationform.cpp:
#ifdef Q_OS_WIN
if (m_taskButton)
#endif
should be:
#ifdef Q_OS_WIN
if (m_taskButton)
#endif
A patch is attached too.
Attachments
Issue Links
- duplicates
-
QTIFW-764 Installer crashes when setting "gui.setSilent(true)"
- Closed