Fix the ISurfaceComposer onTransact switch.
Two of the cases in the ISurfaceComposer onTransact switch statement were missing 'break' statements at the end, and would fall through to the next case block. This change adds those break statements. Change-Id: Ia53abe34e4dae480485620c66a14b4c6c76f7735
This commit is contained in:
parent
1a4a8587c4
commit
151f2f5a6c
@ -252,13 +252,13 @@ status_t BnSurfaceComposer::onTransact(
|
||||
int32_t mode = data.readInt32();
|
||||
status_t res = turnElectronBeamOff(mode);
|
||||
reply->writeInt32(res);
|
||||
}
|
||||
} break;
|
||||
case TURN_ELECTRON_BEAM_ON: {
|
||||
CHECK_INTERFACE(ISurfaceComposer, data, reply);
|
||||
int32_t mode = data.readInt32();
|
||||
status_t res = turnElectronBeamOn(mode);
|
||||
reply->writeInt32(res);
|
||||
}
|
||||
} break;
|
||||
default:
|
||||
return BBinder::onTransact(code, data, reply, flags);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user