From 44333763612a79d64f109f94b47c5c26bd01e625 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 16 Jun 2006 22:44:28 +0000 Subject: r16313: Not a problem - but ensure Klocwork is quiet (#872). Jeremy. (This used to be commit 22a345deed6caa5750e2bb233a20422ad7b90d94) --- source3/nmbd/nmbd_subnetdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/nmbd/nmbd_subnetdb.c b/source3/nmbd/nmbd_subnetdb.c index 5a93d8bec0..3b9be2c2ce 100644 --- a/source3/nmbd/nmbd_subnetdb.c +++ b/source3/nmbd/nmbd_subnetdb.c @@ -57,8 +57,6 @@ yet and it may be in use by a response record void close_subnet(struct subnet_record *subrec) { - DLIST_REMOVE(subnetlist, subrec); - if (subrec->dgram_sock != -1) { close(subrec->dgram_sock); subrec->dgram_sock = -1; @@ -67,6 +65,8 @@ void close_subnet(struct subnet_record *subrec) close(subrec->nmb_sock); subrec->nmb_sock = -1; } + + DLIST_REMOVE(subnetlist, subrec); } /**************************************************************************** -- cgit