Closed
Bug 888248
Opened 12 years ago
Closed 12 years ago
java.lang.NullPointerException: at org.mozilla.gecko.health.BrowserHealthRecorder$<n>.run(BrowserHealthRecorder.java)
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(firefox22 unaffected, firefox23 fixed, firefox24 fixed)
RESOLVED
FIXED
Firefox 25
| Tracking | Status | |
|---|---|---|
| firefox22 | --- | unaffected |
| firefox23 | --- | fixed |
| firefox24 | --- | fixed |
People
(Reporter: scoobidiver, Assigned: rnewman)
References
Details
(Keywords: crash, regression, Whiteboard: [native-crash])
Crash Data
Attachments
(1 file)
|
1.71 KB,
patch
|
nalexander
:
review+
akeybl
:
approval-mozilla-aurora+
akeybl
:
approval-mozilla-beta+
|
Details | Diff | Splinter Review |
There are 3 reports including bp-24b42641-0186-428b-bd23-588a12130628.
java.lang.NullPointerException
at org.mozilla.gecko.health.BrowserHealthRecorder$4.run(BrowserHealthRecorder.java:785)
at android.os.Handler.handleCallback(Handler.java:605)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at org.mozilla.gecko.util.GeckoBackgroundThread.run(GeckoBackgroundThread.java:32)
More reports at:
https://crash-stats.mozilla.com/query/?product=FennecAndroid&query_search=signature&query_type=contains&query=org.mozilla.gecko.health.BrowserHealthRecorder&reason=&do_query=1
Updated•12 years ago
|
tracking-fennec: --- → ?
| Assignee | ||
Comment 1•12 years ago
|
||
Untested.
Comment 2•12 years ago
|
||
Comment on attachment 769452 [details] [diff] [review]
Proposed patch. v1
Review of attachment 769452 [details] [diff] [review]:
-----------------------------------------------------------------
::: mobile/android/base/health/BrowserHealthRecorder.java
@@ +783,5 @@
> @Override
> public void run() {
> + final HealthReportDatabaseStorage storage = self.storage;
> + if (storage == null) {
> + Log.d(LOG_TAG, "No storage: shutting down?");
Can you say something less generic, like "No storage: not recording search. Shutting down?"
Attachment #769452 -
Flags: review?(nalexander) → review+
| Assignee | ||
Comment 3•12 years ago
|
||
Whiteboard: [native-crash] → [native-crash][fixed in services]
Comment 4•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Whiteboard: [native-crash][fixed in services] → [native-crash]
Target Milestone: --- → Firefox 25
| Assignee | ||
Comment 5•12 years ago
|
||
Comment on attachment 769452 [details] [diff] [review]
Proposed patch. v1
[Approval Request Comment]
Bug caused by (feature/regressing bug #):
Initial FHR landing.
User impact if declined:
Some number of crashes.
Testing completed (on m-c, etc.):
Landed on m-c; can't really verify until we see whether crash rate goes down.
Risk to taking this patch (and alternatives if risky):
Should be none: just null checks.
String or IDL/UUID changes made by this patch:
None.
Attachment #769452 -
Flags: approval-mozilla-beta?
Attachment #769452 -
Flags: approval-mozilla-aurora?
Comment 6•12 years ago
|
||
Comment on attachment 769452 [details] [diff] [review]
Proposed patch. v1
Early enough in the cycle to take a fix for a non-topcrash null check.
Attachment #769452 -
Flags: approval-mozilla-beta?
Attachment #769452 -
Flags: approval-mozilla-beta+
Attachment #769452 -
Flags: approval-mozilla-aurora?
Attachment #769452 -
Flags: approval-mozilla-aurora+
| Assignee | ||
Comment 7•12 years ago
|
||
https://hg.mozilla.org/releases/mozilla-aurora/rev/adaa503105d1
https://hg.mozilla.org/releases/mozilla-beta/rev/6d3f2be5fffd
status-firefox24:
--- → fixed
Updated•12 years ago
|
tracking-fennec: ? → ---
Updated•5 years ago
|
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•