edje: Fix coverity warning
authorJean-Philippe Andre <jp.andre@samsung.com>
Wed, 13 Jul 2016 06:44:58 +0000 (15:44 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Wed, 13 Jul 2016 06:44:58 +0000 (15:44 +0900)
commit1b6825d3fef6307b5bd93b7160b97dcae0143f73
treefcbd40913b9a91a6dfe0852617c6407eac03e8c6
parentcdc8d15a5ca0eb478882e670af89fa914ffec8ce
edje: Fix coverity warning

CID 1355234 Logically dead code

The indicated dead code may have performed some action;
that action will never occur.
In eet_data_descriptor_element_add: Code can never be
reached because of a logical contradiction (CWE-561)

Solution: use explicit range within valid values with <= and >=
rather than excluded values with > and <
src/lib/eet/eet_data.c