evas-gl-common: Fix incorrect expression

Coverity reports this as in incorrect expression because it was
checking cache_entry width <= 0 twice. Fairly safe to assume that the
proper check should be width || height.

Fix CID1368336

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-01-08 19:48:26 -05:00
parent dfd0e5d665
commit f026055630
1 changed files with 1 additions and 1 deletions

View File

@ -1174,7 +1174,7 @@ evas_gl_common_texture_upload(Evas_GL_Texture *tex, RGBA_Image *im, unsigned int
GLuint fmt;
if ((((int)im->cache_entry.w) <= 0) ||
(((int)im->cache_entry.w) <= 0)) return;
(((int)im->cache_entry.h) <= 0)) return;
fmt = tex->pt->format;
glBindTexture(GL_TEXTURE_2D, tex->pt->texture);
if (tex->gc->shared->info.unpack_row_length)