* commit 'b275b4dc3e5dcbae1e171bd51165a93f16332ef4': SurfaceFlinger: Fix null pointer exception
This commit is contained in:
commit
105aa28eef
@ -620,7 +620,11 @@ status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>& /* display */,
|
||||
}
|
||||
|
||||
int SurfaceFlinger::getActiveConfig(const sp<IBinder>& display) {
|
||||
return getDisplayDevice(display)->getActiveConfig();
|
||||
sp<DisplayDevice> device(getDisplayDevice(display));
|
||||
if (device != NULL) {
|
||||
return device->getActiveConfig();
|
||||
}
|
||||
return BAD_VALUE;
|
||||
}
|
||||
|
||||
void SurfaceFlinger::setActiveConfigInternal(const sp<DisplayDevice>& hw, int mode) {
|
||||
|
Loading…
Reference in New Issue
Block a user