server: Make sure we don't get into an infinite loop freeing inodes.

This commit is contained in:
Mike McCormack 2006-02-22 23:11:17 +09:00 committed by Alexandre Julliard
parent 4241adbfcf
commit 309a9bf36f
1 changed files with 3 additions and 3 deletions

View File

@ -492,10 +492,10 @@ static void free_inode( struct inode *inode )
if (!subtree && !inode->parent)
{
struct list *head;
while ( (head = list_head(&inode->children)) )
struct inode *tmp, *next;
LIST_FOR_EACH_ENTRY_SAFE( tmp, next, &inode->children,
struct inode, ch_entry )
{
struct inode *tmp = LIST_ENTRY( head, struct inode, ch_entry );
assert( tmp != inode );
assert( tmp->parent == inode );
free_inode( tmp );