aboutsummaryrefslogtreecommitdiffstats
path: root/src/mapi/glapi/glapi_gentable.c
diff options
context:
space:
mode:
authorJonas Maebe <[email protected]>2012-04-22 20:39:32 -0700
committerJeremy Huddleston <[email protected]>2012-04-22 20:39:32 -0700
commit8d09f4d0cc8d2ac5398c8b26638d5659429a4280 (patch)
tree16fc44ec346951876e0503e62591c95c3b10fd5f /src/mapi/glapi/glapi_gentable.c
parente6aad9ba04fb914a2484241f74ed0557fd1d59da (diff)
glapi: Correct size of allocated _glapi_table struct
The __glapi_gentable_set_remaining_noop() routine treats the _glapi_struct as an array of _glapi_get_dispatch_table_size() pointers, so we have to allocate _glapi_get_dispatch_table_size()*sizeof(void*) bytes rather than sizeof(struct _glapi_struct) bytes. Reviewed-by: Jeremy Huddleston <[email protected]>
Diffstat (limited to 'src/mapi/glapi/glapi_gentable.c')
-rw-r--r--src/mapi/glapi/glapi_gentable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/glapi_gentable.c b/src/mapi/glapi/glapi_gentable.c
index cc083d9859c..7552af252d7 100644
--- a/src/mapi/glapi/glapi_gentable.c
+++ b/src/mapi/glapi/glapi_gentable.c
@@ -105,7 +105,7 @@ __glapi_gentable_set_remaining_noop(struct _glapi_table *disp) {
struct _glapi_table *
_glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
- struct _glapi_table *disp = calloc(1, sizeof(struct _glapi_table));
+ struct _glapi_table *disp = calloc(_glapi_get_dispatch_table_size(), sizeof(void *));
char symboln[512];
if(!disp)