Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 140e58b0 authored by Dan Albert's avatar Dan Albert Committed by Android Git Automerger
Browse files

am 8bbc5269: Merge "Don\'t check a staticly allocated array for null."

* commit '8bbc5269':
  Don't check a staticly allocated array for null.
parents 1d99636f 8bbc5269
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1381,7 +1381,7 @@ void EventHub::releaseControllerNumberLocked(Device* device) {


bool EventHub::hasKeycodeLocked(Device* device, int keycode) const {
    if (!device->keyMap.haveKeyLayout() || !device->keyBitmask) {
    if (!device->keyMap.haveKeyLayout()) {
        return false;
    }