Closed
Bug 1305959
Opened 9 years ago
Closed 9 years ago
[Static Analysis][Uninitialized scalar field] In constructor ClientNavigateRunnable
Categories
(Core :: DOM: Service Workers, defect)
Core
DOM: Service Workers
Tracking
()
RESOLVED
FIXED
mozilla52
Tracking | Status | |
---|---|---|
firefox52 | --- | fixed |
People
(Reporter: paul.bignier, Assigned: paul.bignier)
References
(Blocks 1 open bug)
Details
(Keywords: coverity, Whiteboard: [CID 1368348])
Attachments
(1 file, 1 obsolete file)
1.00 KB,
patch
|
baku
:
review+
|
Details | Diff | Splinter Review |
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
Build ID: 20160921132349
Assignee | ||
Updated•9 years ago
|
Assignee | ||
Comment 1•9 years ago
|
||
* Run() seems to be the initializer but it can exit early so need to initiliaze to square with the coming MOZ_ASSERT(mWorkerPrivate);
Assignee | ||
Comment 2•9 years ago
|
||
Hi Johnny,
Could you please route this patch to the concerned person? I'm not sure who it is and all the dom/workers/ peers are tagged as "not receiving bugmail".
Thank you,
Paul
Flags: needinfo?(jst)
Comment 3•9 years ago
|
||
Comment on attachment 8795672 [details] [diff] [review]
Initialize a ClientNavigateRunnable member
Ben Kelly (:bkelly) would probably be the best person to look at this, though he's out this week is looks like, so baku can hopefully help sooner.
Flags: needinfo?(jst)
Attachment #8795672 -
Flags: review?(amarchesini)
Comment 4•9 years ago
|
||
Comment on attachment 8795672 [details] [diff] [review]
Initialize a ClientNavigateRunnable member
Review of attachment 8795672 [details] [diff] [review]:
-----------------------------------------------------------------
::: dom/workers/ServiceWorkerWindowClient.cpp
@@ +335,5 @@
> PromiseWorkerProxy* aPromiseProxy)
> : mWindowId(aWindowId)
> , mUrl(aUrl)
> , mPromiseProxy(aPromiseProxy)
> + , mWorkerPrivate()
, mWorkerPrivate(nullptr)
Attachment #8795672 -
Flags: review?(amarchesini)
Assignee | ||
Comment 5•9 years ago
|
||
Attachment #8796062 -
Flags: review?(amarchesini)
Assignee | ||
Updated•9 years ago
|
Attachment #8795672 -
Attachment is obsolete: true
Updated•9 years ago
|
Attachment #8796062 -
Flags: review?(amarchesini) → review+
Updated•9 years ago
|
Assignee: nobody → paul.bignier
Assignee | ||
Updated•9 years ago
|
Keywords: checkin-needed
Pushed by ryanvm@gmail.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/f10953ecc7ab
Initialize a ClientNavigateRunnable member. r=baku
Keywords: checkin-needed
Comment 7•9 years ago
|
||
bugherder |
Status: UNCONFIRMED → RESOLVED
Closed: 9 years ago
status-firefox52:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla52
Updated•7 years ago
|
Blocks: coverity-analysis
You need to log in
before you can comment on or make changes to this bug.
Description
•