Evas GL: Return safe empty string "" instead of NULL

This is so dumb.
This commit is contained in:
Jean-Philippe Andre 2014-09-03 16:25:42 +09:00
parent de7a8a3dab
commit f351aad8bf
1 changed files with 1 additions and 1 deletions

View File

@ -445,7 +445,7 @@ EAPI const char *
evas_gl_string_query(Evas_GL *evas_gl, int name)
{
MAGIC_CHECK(evas_gl, Evas_GL, MAGIC_EVAS_GL);
return NULL;
return "";
MAGIC_CHECK_END();
return (const char *)evas_gl->evas->engine.func->gl_string_query(evas_gl->evas->engine.data.output, name);