fix mem leak (bug 11793)

This commit is contained in:
Brian 2007-08-01 08:41:51 -06:00
parent e9fbf69aea
commit f761c99d25

View file

@ -51,6 +51,7 @@ pool_create(struct _DriBufferPool *pool,
return NULL;
if ((alignment > pageSize) && (alignment % pageSize)) {
free(buf);
return NULL;
}