timestamp field in ApplicationErrorReport was not getting intitialized on ANRs

This commit is contained in:
Jacek Surazski
2010-01-27 16:37:21 -08:00
parent 3ae6162d18
commit 41a9fd55ac

View File

@@ -113,7 +113,8 @@ class AppNotRespondingDialog extends BaseErrorDialog {
ProcessRecord app = mProc;
if (msg.what == WAIT_AND_REPORT) {
appErrorIntent = mService.createAppErrorIntentLocked(app, 0, null);
appErrorIntent = mService.createAppErrorIntentLocked(app,
System.currentTimeMillis(), null);
}
app.notResponding = false;