From a6ed6f48e6bf4ca5427d921cac863cf3b42f7efc Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 27 Aug 2003 14:48:16 +0000 Subject: make _glapi_get_proc_address() return NULL if function doesn't start with gl prefix --- src/mesa/glapi/glapi.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/mesa/glapi/glapi.c') diff --git a/src/mesa/glapi/glapi.c b/src/mesa/glapi/glapi.c index 3cb4ccca34..85330dd667 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; -- cgit v1.2.3