evas: fix use of uninitialized pointer.

CID 1210819
This commit is contained in:
Cedric Bail 2014-05-04 00:14:52 +02:00
parent 46b6e8a563
commit ede36d8382
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ e3d_texture_filter_get(const E3D_Texture *texture,
E3D_Drawable *
e3d_drawable_new(int w, int h, int alpha, GLenum depth_format, GLenum stencil_format)
{
E3D_Drawable *drawable;
E3D_Drawable *drawable = NULL;
GLuint tex, fbo;
GLuint depth_stencil_buf = 0;
GLuint depth_buf = 0;