Merge "Fix issue #3175809: system_server crash with SEGV_MAPERR (IKXEVEREST-1372)"
This commit is contained in:
committed by
Android (Google) Code Review
commit
88bf6084c3
@@ -11344,8 +11344,12 @@ public class WindowManagerService extends IWindowManager.Stub
|
||||
if (mToBottomApps.size() > 0) {
|
||||
pw.print(" mToBottomApps="); pw.println(mToBottomApps);
|
||||
}
|
||||
pw.print(" DisplayWidth="); pw.print(mDisplay.getWidth());
|
||||
pw.print(" DisplayHeight="); pw.println(mDisplay.getHeight());
|
||||
if (mDisplay != null) {
|
||||
pw.print(" DisplayWidth="); pw.print(mDisplay.getWidth());
|
||||
pw.print(" DisplayHeight="); pw.println(mDisplay.getHeight());
|
||||
} else {
|
||||
pw.println(" NO DISPLAY");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user