efl: fix an uninitialized data path in OpenGL engine.

SVN revision: 80808
This commit is contained in:
Cedric BAIL 2012-12-13 10:26:02 +00:00
parent b8ffd432b1
commit 981b5f7d40
3 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,7 @@
2012-12-13 Cedric Bail
* Fix potential segv in software engine native_set code.
* Fix uninitialized data in Evas OpenGL engine.
2012-12-12 Daniel Willmann

1
NEWS
View File

@ -79,3 +79,4 @@ Fixes:
* Fix possible buffer overflow in functions relying on EET_T_LAST
* Fix possible memory corruption in xrandr EDID functions.
* Fix potential segv in software engine native_set code.
* Fix uninitialized data in Evas OpenGL engine.

View File

@ -1868,7 +1868,7 @@ eng_image_native_set(void *data, void *image, void *native)
int pixmap_att[20], i;
int config_attrs[40], num = 0;
int tex_format = 0, tex_target = 0, yinvert = 0, mipmap = 0;
unsigned int target;
unsigned int target = 0;
GLXFBConfig *configs;
i = 0;