From: Brian Paul Date: Wed, 27 Aug 2003 14:48:16 +0000 (+0000) Subject: make _glapi_get_proc_address() return NULL if function doesn't start with gl prefix X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a6ed6f48e6bf4ca5427d921cac863cf3b42f7efc;p=mesa.git make _glapi_get_proc_address() return NULL if function doesn't start with gl prefix --- diff --git a/src/mesa/glapi/glapi.c b/src/mesa/glapi/glapi.c index 3cb4ccca341..85330dd6674 100644 --- a/src/mesa/glapi/glapi.c +++ b/src/mesa/glapi/glapi.c @@ -740,8 +740,12 @@ _glapi_get_proc_offset(const char *funcName) const GLvoid * _glapi_get_proc_address(const char *funcName) { - /* search extension functions first */ GLuint i; + + if (funcName[0] != 'g' || funcName[1] != 'l') + return NULL; + + /* search extension functions first */ for (i = 0; i < NumExtEntryPoints; i++) { if (strcmp(ExtEntryTable[i].Name, funcName) == 0) { return ExtEntryTable[i].Address;