evdev: Avoid unintended case drop through
authorRob Bradford <rob@linux.intel.com>
Tue, 9 Oct 2012 17:44:31 +0000 (18:44 +0100)
committerKristian Høgsberg <krh@bitplanet.net>
Wed, 10 Oct 2012 02:50:42 +0000 (22:50 -0400)
e->code is in the same range for ABS_ and for REL_. As the code currently
stands and for the current values in Linux's input.h there is no risk of a
problem. However just in case it would be wise to break after evaluating the
relative events.

Signed-off-by: Rob Bradford <rob@linux.intel.com>
src/evdev.c

index 8848736..cc5af91 100644 (file)
@@ -195,6 +195,7 @@ is_motion_event(struct input_event *e)
                case REL_Y:
                        return 1;
                }
+               break;
        case EV_ABS:
                switch (e->code) {
                case ABS_X: