XQuartz: GL: Change from xalloc to xcalloc to potentially avoid

uninitialized data in the __GLXAquaContext.
(cherry picked from commit d3120241f9)
This commit is contained in:
George Staplin 2009-02-21 22:33:10 -07:00 committed by Jeremy Huddleston
parent 5587f9b771
commit 61abf3189f

View File

@ -167,7 +167,7 @@ __glXAquaScreenCreateContext(__GLXscreen *screen,
GLAQUA_DEBUG_MSG("glXAquaScreenCreateContext\n");
context = xalloc (sizeof (__GLXAquaContext));
context = xcalloc(1, sizeof (__GLXAquaContext));
if (context == NULL)
return NULL;