Closed
Bug 289049
Opened 20 years ago
Closed 20 years ago
ShowMessage called at wrong time
Categories
(Firefox :: Installer, defect)
Tracking
()
VERIFIED
FIXED
Firefox1.5
People
(Reporter: lvcipriani, Assigned: charles.fenwick)
Details
Attachments
(1 file)
|
1.53 KB,
patch
|
benjamin
:
review+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2
In the file mozilla/toolkit/mozapps/installer/windows/wizard/setup/extra.c
there are two extra semicolons; one at line 2446:
if(*sgProduct.greCleanupOrphansMessage != '\0');
ShowMessage(sgProduct.greCleanupOrphansMessage, TRUE);
should be:
if(*sgProduct.greCleanupOrphansMessage != '\0')
ShowMessage(sgProduct.greCleanupOrphansMessage, TRUE);
----------------------------------------------------------------------
and another one at line 2592:
if(*sgProduct.greCleanupOrphansMessage != '\0');
ShowMessage(sgProduct.greCleanupOrphansMessage, FALSE);
should be:
if(*sgProduct.greCleanupOrphansMessage != '\0')
ShowMessage(sgProduct.greCleanupOrphansMessage, FALSE);
Reproducible: Always
Steps to Reproduce:
1. see source
2.
3.
Expected Results:
see Details| Assignee | ||
Comment 1•20 years ago
|
||
| Assignee | ||
Updated•20 years ago
|
Assignee: general → bugs
OS: All → Windows XP
Product: Mozilla Application Suite → Firefox
QA Contact: bugzilla → bugzilla
Comment 2•20 years ago
|
||
Comment on attachment 179646 [details] [diff] [review] patch r=me
Attachment #179646 -
Flags: review+
Updated•20 years ago
|
Assignee: bugs → clf03f
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 3•20 years ago
|
||
Fixed on trunk.
Status: NEW → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox1.1
Updated•18 years ago
|
Status: RESOLVED → VERIFIED
QA Contact: bugzilla → installer
You need to log in
before you can comment on or make changes to this bug.
Description
•