display: Fix static analysis issue 62/294962/4
authorYunhee Seo <yuni.seo@samsung.com>
Thu, 29 Jun 2023 06:04:32 +0000 (15:04 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Fri, 7 Jul 2023 04:51:29 +0000 (04:51 +0000)
Fix logical error code

Change-Id: I8fe1338ac833385577ea8e515745d8a44c226b63
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
src/display/display-lock.c

index 2b2625f..1f32883 100644 (file)
@@ -377,7 +377,7 @@ int display_lock_request_lock(enum state_t state, pid_t pid, unsigned int timeou
 {
        struct display_lock *dl;
 
-       if (state < S_NORMAL || state > S_LCDOFF || timeout < 0)
+       if (state < S_NORMAL || state > S_LCDOFF)
                return -EINVAL;
 
        dl = find_lock(state, pid);
@@ -408,7 +408,7 @@ int display_lock_update_lock(enum state_t state, pid_t pid, unsigned int timeout
 {
        struct display_lock *dl;
 
-       if (state < S_NORMAL || state > S_LCDOFF || timeout < 0)
+       if (state < S_NORMAL || state > S_LCDOFF)
                return -EINVAL;
 
        dl = find_lock(state, pid);