Fix buffer object list freeing.

main
Thomas Hellstrom 2007-05-02 17:13:32 +02:00
parent f06ad82ecd
commit cf7c90f7b4
1 changed files with 1 additions and 1 deletions

View File

@ -2499,7 +2499,7 @@ void drmBOFreeList(drmBOList *list)
DRMLISTDEL(l);
node = DRMLISTENTRY(drmBONode, l, head);
free(node);
l = list->free.next;
l = list->list.next;
list->numCurrent--;
list->numOnList--;
}