diff options
author | Matt Turner <[email protected]> | 2012-09-04 23:12:46 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2012-09-05 22:28:50 -0700 |
commit | da3282b6e2f374b88daf09f7f3ba5b05af45f51a (patch) | |
tree | 3942321e5d2241a80b7a52248c00cce612e93597 /src/glx/indirect_glx.c | |
parent | 52789496a78758e32182ddd49263d3a63fc05b1f (diff) |
Replace another malloc/memset-0 combination with calloc
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/glx/indirect_glx.c')
-rw-r--r-- | src/glx/indirect_glx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/glx/indirect_glx.c b/src/glx/indirect_glx.c index f3cc1e7d049..ff869e2dc8f 100644 --- a/src/glx/indirect_glx.c +++ b/src/glx/indirect_glx.c @@ -361,14 +361,13 @@ indirect_create_context(struct glx_screen *psc, glx_context_init(gc, psc, mode); gc->isDirect = GL_FALSE; gc->vtable = &indirect_context_vtable; - state = malloc(sizeof(struct __GLXattributeRec)); + state = calloc(1, sizeof(struct __GLXattributeRec)); if (state == NULL) { /* Out of memory */ free(gc); return NULL; } gc->client_state_private = state; - memset(gc->client_state_private, 0, sizeof(struct __GLXattributeRec)); state->NoDrawArraysProtocol = (getenv("LIBGL_NO_DRAWARRAYS") != NULL); /* |