evas: fix uninitialized value being used when the engine doesn't support Evas_3D.

CID 1211988
This commit is contained in:
Cedric Bail 2014-05-10 11:44:57 +02:00
parent c987f367d5
commit d8652193fc
1 changed files with 2 additions and 1 deletions

View File

@ -2517,7 +2517,8 @@ _3d_render(Evas *eo_e, Evas_Object *eo_obj EINA_UNUSED,
if (pd_scene->surface)
{
int w, h;
int w = 0;
int h = 0;
if (e->engine.func->drawable_size_get)
{