Update to xserver 1.4.2. Tested by landry@, ckuethe@, jsing@ mbalmer@.

This commit is contained in:
matthieu
2008-06-15 00:17:32 +00:00
parent d2de707dd7
commit 97eda17882
45 changed files with 652 additions and 182 deletions

View File

@@ -1197,7 +1197,7 @@ AllocateOutputBuffer(void)
oco = (ConnectionOutputPtr)xalloc(sizeof(ConnectionOutput));
if (!oco)
return (ConnectionOutputPtr)NULL;
oco->buf = (unsigned char *) xalloc(BUFSIZE);
oco->buf = (unsigned char *) xcalloc(1, BUFSIZE);
if (!oco->buf)
{
xfree(oco);