Fix a memory leak: when unlocking make sure we release the memory associated

with the lock begin removed!

Reviewed by thorpej.
This commit is contained in:
oster 2001-10-23 19:54:53 +00:00
parent 9e91d48638
commit 4a785b3509
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: lockd_lock.c,v 1.7 2001/06/12 15:17:31 wiz Exp $ */
/* $NetBSD: lockd_lock.c,v 1.8 2001/10/23 19:54:53 oster Exp $ */
/*
* Copyright (c) 2000 Manuel Bouyer.
@ -638,6 +638,7 @@ do_unlock(rfl)
}
break;
}
lfree(rfl);
return error;
}