diff options
author | Jeremy Huddleston Sequoia <[email protected]> | 2014-05-20 01:37:58 -0700 |
---|---|---|
committer | Jeremy Huddleston Sequoia <[email protected]> | 2014-05-20 01:37:58 -0700 |
commit | ff5456d1acf6f627a6837be3f3f37c6a268c9e8e (patch) | |
tree | 95bc904d9539570fa3dcf6af927101a2419627a0 | |
parent | 52381a7ffba908410f7a53855f082401fca7293a (diff) |
glapi: Avoid heap corruption in _glapi_table
Signed-off-by: Jeremy Huddleston Sequoia <[email protected]>
Reviewed-by: Chia-I Wu <[email protected]>
-rw-r--r-- | src/mapi/glapi/gen/gl_gentable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/gl_gentable.py b/src/mapi/glapi/gen/gl_gentable.py index 35dddc7a088..d45a5e0ffc3 100644 --- a/src/mapi/glapi/gen/gl_gentable.py +++ b/src/mapi/glapi/gen/gl_gentable.py @@ -113,7 +113,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(1, _glapi_get_dispatch_table_size() * sizeof(_glapi_proc)); char symboln[512]; if(!disp) |