Closed
Bug 61764
Opened 24 years ago
Closed 24 years ago
[Patch] Bug from whithin Qt2.2.1 causes Mozilla crashing
Categories
(Core :: XUL, defect, P3)
Tracking
()
RESOLVED
FIXED
People
(Reporter: denis, Assigned: denis)
Details
Attachments
(2 files)
Problem:
Some Qt functions don't check if (argc,argv) pair is not set,
and use argv[0] directly.
Source:
[widget/src/qt/nsQApplication.cpp]
nsQApplication calls QApplication( Display* ) constructor without
arguments.
It causes "Segmentation Falt" and Mozilla crashing.
Solution:
To create new nsQApplication constructor and
call QApplication ( Display*, int & argc, char ** argv )
with not NULL arguments.
Module:
widget/src/qt
Affected files:
nsQApplication.cpp
nsQApplication.h
Assignee | ||
Comment 1•24 years ago
|
||
Assignee | ||
Comment 2•24 years ago
|
||
Comment 3•24 years ago
|
||
Marking NEW so someone will look at the patch and decide whether or not to use it.
Comment 4•24 years ago
|
||
This bug is fixed as part of Bugzilla #70511, which contains many more fixes for
Qt-Mozilla as well.
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•