* Removed an assert that will now always trigger (due to the DoublyLinkedList

changes).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34878 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2010-01-03 19:12:01 +00:00
parent e7385fa68e
commit 2e095ebca8
1 changed files with 1 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2006-2009, Haiku, Inc. All Rights Reserved.
* Copyright 2006-2010, Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
@ -213,10 +213,6 @@ put_route_internal(struct net_domain_private* domain, net_route* _route)
return;
// delete route - it must already have been removed at this point
ASSERT(route->GetDoublyLinkedListLink()->next == NULL
&& route->GetDoublyLinkedListLink()->previous == NULL);
delete route;
}