Merge "GlES2: Add NULL check"

This commit is contained in:
Jesse Hall 2014-08-06 17:14:01 +00:00 committed by Gerrit Code Review
commit e2e17e5b23
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ const GLubyte * glGetString(GLenum name)
const GLubyte * ret = egl_get_string_for_current_context(name);
if (ret == NULL) {
gl_hooks_t::gl_t const * const _c = &getGlThreadSpecific()->gl;
ret = _c->glGetString(name);
if(_c) ret = _c->glGetString(name);
}
return ret;
}