You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// CRASH: hu.vsza.adsdroid (pid 6126)// Short Msg: java.lang.NullPointerException// Long Msg: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.app.ProgressDialog.dismiss()' on a null object reference// Build Label: google/sdk_gphone_x86_arm/generic_x86_arm:9/PSR1.180720.122/6736742:userdebug/dev-keys// Build Changelist: 6736742// Build Time: 1596587219000java.lang.NullPointerException: Attempttoinvokevirtualmethod'void android.app.ProgressDialog.dismiss()'onanullobjectreferenceathu.vsza.adsdroid.c.a(UnknownSource:8)
athu.vsza.adsdroid.c.onPostExecute(UnknownSource:2)
atandroid.os.AsyncTask.finish(AsyncTask.java:695)
atandroid.os.AsyncTask.access$600(AsyncTask.java:180)
atandroid.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:712)
atandroid.os.Handler.dispatchMessage(Handler.java:106)
atandroid.os.Looper.loop(Looper.java:193)
atandroid.app.ActivityThread.main(ActivityThread.java:6669)
atjava.lang.reflect.Method.invoke(NativeMethod)
atcom.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
atcom.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
Reason
SearchPanel class will post some AsyncTasks. If the first task invoke its onPostExecute() method, the field mProgressDialog will be set to null. At the same time, the second task uses this field, and NPE is triggered.
The text was updated successfully, but these errors were encountered:
App will crash due to some concurrency bugs.
Trace
Reason
SearchPanel
class will post someAsyncTask
s. If the first task invoke itsonPostExecute()
method, the fieldmProgressDialog
will be set to null. At the same time, the second task uses this field, and NPE is triggered.The text was updated successfully, but these errors were encountered: