Closed
Bug 888641
Opened 9 years ago
Closed 9 years ago
java.lang.NullPointerException: at org.mozilla.gecko.BrowserToolbar.setProgressVisibility(BrowserToolbar.java)
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(firefox24 unaffected, firefox25+ fixed)
RESOLVED
FIXED
Firefox 25
Tracking | Status | |
---|---|---|
firefox24 | --- | unaffected |
firefox25 | + | fixed |
People
(Reporter: scoobidiver, Assigned: mkajda)
References
Details
(Keywords: crash, regression, topcrash, Whiteboard: [native-crash])
Crash Data
Attachments
(1 file, 3 obsolete files)
2.12 KB,
patch
|
sriram
:
review+
|
Details | Diff | Splinter Review |
It has been hit by three users in 25.0a1/2013029. The regression range is: http://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=8e3a124c9c1a&tochange=c5ce065936fa I think it's a regression from bug 887020. Here is a crash report: bp-132521ef-622b-4264-bb27-115762130629. java.lang.NullPointerException at org.mozilla.gecko.BrowserToolbar.setProgressVisibility(BrowserToolbar.java:805) at org.mozilla.gecko.BrowserToolbar.onTabChanged(BrowserToolbar.java:470) at org.mozilla.gecko.Tabs$5.run(Tabs.java:550) at android.os.Handler.handleCallback(Handler.java:725) at android.os.Handler.dispatchMessage(Handler.java:92) at android.os.Looper.loop(Looper.java:137) at android.app.ActivityThread.main(ActivityThread.java:5227) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:511) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562) at dalvik.system.NativeStart.main(Native Method) More reports at: https://crash-stats.mozilla.com/report/list?product=FennecAndroid&signature=java.lang.NullPointerException%3A+at+org.mozilla.gecko.BrowserToolbar.setProgressVisibility%28BrowserToolbar.java%29
Assignee | ||
Comment 1•9 years ago
|
||
Hi All, May I take this bug and start working on it? I am completely new here, but would like to start contributing. If someone could be my mentor, it would be great. I looked into this a bit and it seems that it crashes because mProgressSpinner is null when mProgressSpinner.start(); gets called. mProgressSpinner is instantiated in onAttachedToWindow callback (@ line 347 in BrowserToolbar.java) which in turn might be called later than onTabChanged. The only what is guaranteed according to Android docs that attachedToWindow would be invoked before onDraw, but this could happen at any time. So I suspect race condition occurred. I haven't reproduced this though. If anyone had testing scenario for it I would appreciate it. Please let me know your thoughts and if I can go for it.
Assignee | ||
Comment 2•9 years ago
|
||
Previously there was 'public void from(RelativeLayout layout)' method in BrowserToolbar class and was replaced (more or less) by 'public void onAttachedToWindow()' callback. http://hg.mozilla.org/mozilla-central/rev/cc5850cf4042#l2.177 As mentioned in previous comment 'onAttachedToWindow' is called asynchronously before 'onDraw' gets called. The 'from' method was called synchronously in BrowserApp's 'onCreate' callback, so mProgressSpinner had valid value when BrowserApp was created. http://hg.mozilla.org/mozilla-central/rev/cc5850cf4042#l1.31 All these changes where introduced by this revision http://hg.mozilla.org/mozilla-central/rev/cc5850cf4042 when working on https://bugzilla.mozilla.org/show_bug.cgi?id=887020 (as Scoobidiver suspected).
Updated•9 years ago
|
Assignee: nobody → michal.kajda
Status: NEW → ASSIGNED
Flags: needinfo?(sriram)
Reporter | ||
Comment 3•9 years ago
|
||
There are 20 crashes in one build.
Assignee | ||
Comment 4•9 years ago
|
||
The crash is caused by Tabs' notifyListeners method which is run in UI thread and because it is current thread (main thread) it is called immediately. Apparently one of the listeners is BrowserToolbar which has not been yet attached to window, so its mProgressSpinner is equal to null. I still haven't reproduced it on my Nexus 4. How can I debug Fennec using DDMS? I tried this https://wiki.mozilla.org/Mobile/Fennec/Android#Debugging_with_eclipse but description or me are missing something. I think that moving ProgressSpinner = (AnimationDrawable) getResources().getDrawable(R.drawable.progress_spinner); from onAttachedToWindow method to constructor of BrowserToolbar is the most straightforward solution. The question is if it is sufficient.
Assignee | ||
Comment 5•9 years ago
|
||
Here are some comments from recent crash report (translated from Russian to English by google translator) "If you attempt to use the built-in search Yandex, your browser has fallen." "When you try to open an official project page CyanogenMod, your browser has fallen."
Assignee | ||
Comment 6•9 years ago
|
||
Assignee | ||
Comment 7•9 years ago
|
||
Assignee | ||
Comment 8•9 years ago
|
||
I added to patches with different solutions and hope any of them is OK ;)
Assignee | ||
Comment 9•9 years ago
|
||
It's worth to look into all crash reports :) Some of them contain more detailed stack trace: https://crash-stats.mozilla.com/report/index/d42e5c74-19bc-4789-9a30-5302b2130630 maybe it differs because activity was resuming not launching.
Comment 10•9 years ago
|
||
On Samsung Galaxy Nexus (Android 4.1.1) using Nightly 25.0a1 (2013-06-30) the app crashes with this crash signature. STR: 1. go to a website( for example gmail.com) 2. go to news.google.com The app crashes. https://crash-stats.mozilla.com/report/index/6e371b98-4c24-459e-9342-cfbc82130701
Assignee | ||
Comment 11•9 years ago
|
||
Thanks for STR Teodora, but still wasn't able to reproduce. I tried nigthly builds and built locally from repo as well. No luck. Are you using tabs sync between PC and mobile devices?
Comment 12•9 years ago
|
||
Comment on attachment 769480 [details] [diff] [review] Changed initialization point of mProgressSpinner Review of attachment 769480 [details] [diff] [review]: ----------------------------------------------------------------- Sounds good to me.
Attachment #769480 -
Flags: review+
Comment 13•9 years ago
|
||
(In reply to Michal Kajda from comment #7) > Created attachment 769481 [details] [diff] [review] > Return from method if mProgressSpinner is null This might not be needed.
Flags: needinfo?(sriram)
Assignee | ||
Comment 14•9 years ago
|
||
@Sriram: Thank you for review of previous patch. I prepared another one which as I realized that this one would be more consistent with initialization of other drawables. It uses stored resources reference instead of calling getResources() method again.
Attachment #769480 -
Attachment is obsolete: true
Attachment #769481 -
Attachment is obsolete: true
Attachment #769839 -
Flags: review?(sriram)
Comment 15•9 years ago
|
||
Comment on attachment 769839 [details] [diff] [review] Initialization point of mProgressSpinner changed and made consistent with other drawables. Could you please move the initialization a bit below? May be after https://hg.mozilla.org/mozilla-central/file/tip/mobile/android/base/BrowserToolbar.java#l219 r+ with that.
Attachment #769839 -
Flags: review?(sriram) → review+
Assignee | ||
Comment 16•9 years ago
|
||
Done. In case of 'r+': Could anyone push it to the try server please? I don't have permissions as I'm a 'new starter' ;)
Attachment #769839 -
Attachment is obsolete: true
Attachment #769850 -
Flags: review?(sriram)
Updated•9 years ago
|
Updated•9 years ago
|
Attachment #769850 -
Flags: review?(sriram) → review+
Reporter | ||
Updated•9 years ago
|
Comment 18•9 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/a081df164311
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 25
Updated•9 years ago
|
tracking-fennec: ? → ---
Updated•1 year 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
•