[nat] Unregister the fd before leaving..
diff --git a/openbsc/src/nat/bsc_nat.c b/openbsc/src/nat/bsc_nat.c
index 8dd42dc..1799236 100644
--- a/openbsc/src/nat/bsc_nat.c
+++ b/openbsc/src/nat/bsc_nat.c
@@ -150,6 +150,7 @@
  */
 static void remove_bsc_connection(struct bsc_connection *connection)
 {
+	bsc_unregister_fd(&connection->bsc_fd);
 	llist_del(&connection->list_entry);
 	talloc_free(connection);
 }