Closed
Bug 512564
Opened 16 years ago
Closed 16 years ago
Support for the WinCE environment implementation
Categories
(Toolkit :: Application Update, defect, P2)
Tracking
()
RESOLVED
FIXED
mozilla1.9.2b1
| Tracking | Status | |
|---|---|---|
| status1.9.2 | --- | beta1-fixed |
People
(Reporter: robert.strong.bugs, Assigned: robert.strong.bugs)
Details
(Whiteboard: [nv])
Attachments
(1 file, 2 obsolete files)
|
5.36 KB,
patch
|
benjamin
:
review+
|
Details | Diff | Splinter Review |
App update needs a little more work to properly support the WinCE environment implementation... patch coming up
| Assignee | ||
Comment 1•16 years ago
|
||
Assignee: nobody → robert.bugzilla
Status: NEW → ASSIGNED
Attachment #396570 -
Flags: review?(vladimir)
| Assignee | ||
Comment 2•16 years ago
|
||
only change from the first patch is the use of argOffset for checking if the updater should launch the callback app
Attachment #396570 -
Attachment is obsolete: true
Attachment #396572 -
Flags: review?(vladimir)
Attachment #396570 -
Flags: review?(vladimir)
| Assignee | ||
Updated•16 years ago
|
Whiteboard: [nv]
| Assignee | ||
Comment 3•16 years ago
|
||
Comment on attachment 396572 [details] [diff] [review]
patch rev2
>diff --git a/toolkit/mozapps/update/src/updater/updater.cpp b/toolkit/mozapps/update/src/updater/updater.cpp
>--- a/toolkit/mozapps/update/src/updater/updater.cpp
>+++ b/toolkit/mozapps/update/src/updater/updater.cpp
>...
>- if (argc > 4)
>- LaunchCallbackApp(argv[3], argc - 4, argv + 4);
>+ const int argOffset = 4;
>+ if (argc > argOffset) {
>+ // Argument that contains the callback executable. All arguments before this
>+ // argument are skipped.
I've moved this comment locally to before
>+ const int argOffset = 4;
| Assignee | ||
Comment 4•16 years ago
|
||
Attachment #396572 -
Attachment is obsolete: true
Attachment #396621 -
Flags: review?(benjamin)
Attachment #396572 -
Flags: review?(vladimir)
| Assignee | ||
Comment 5•16 years ago
|
||
This affects our WinCE update so requesting blocking 1.9.2
Flags: blocking1.9.2?
Updated•16 years ago
|
Attachment #396621 -
Flags: review?(benjamin) → review+
| Assignee | ||
Comment 6•16 years ago
|
||
Pushed to mozilla-central
http://hg.mozilla.org/mozilla-central/rev/83187d033954
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Priority: -- → P2
Resolution: --- → FIXED
Target Milestone: --- → mozilla1.9.3
Flags: blocking1.9.2? → blocking1.9.2+
| Assignee | ||
Comment 7•16 years ago
|
||
pushed to mozilla-1.9.2
http://hg.mozilla.org/releases/mozilla-1.9.2/rev/e4d5bb4de0b4
Keywords: fixed1.9.2
Target Milestone: mozilla1.9.3 → mozilla1.9.2b1
| Assignee | ||
Comment 8•16 years ago
|
||
If this were to be put in the test suite the pre-existing Windows CE environment implementation that this leverages should first be in the test suite.
Flags: in-testsuite-
Updated•16 years ago
|
status1.9.2:
--- → beta1-fixed
Keywords: fixed1.9.2
You need to log in
before you can comment on or make changes to this bug.
Description
•