Redundant test
By the time the program execution reaches the test of this condition there is only one possible outcome for the test. The code at the destination of this branch is not dead, either because this condition is always true or because there is at least one other branch that reaches it. Test always evaluates the same
/ext/storage_sources/local_store/local_store.c:330: DEADCODE 119947 At condition "ret != 0", the value of "ret" cannot be equal to 0.
/ext/storage_sources/local_store/local_store.c:319: DEADCODE 119947 Condition "ret == 0", taking false branch. Now the value of "ret" cannot be equal to 0.
/ext/storage_sources/local_store/local_store.c:330: DEADCODE 119947 The condition "ret != 0" must be true.