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

uninitialized data in the __GLXAquaContext.
This commit is contained in:
George Staplin 2009-02-21 22:33:10 -07:00
parent c7e3383309
commit d3120241f9

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;