mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-14 15:21:32 +00:00
I hate NULL pointer dereferences.
This commit is contained in:
parent
03390f0cd6
commit
037da9d840
@ -91,6 +91,10 @@ int netdev_tx ( struct net_device *netdev, struct pk_buff *pkb ) {
|
||||
void netdev_tx_complete ( struct net_device *netdev, struct pk_buff *pkb ) {
|
||||
DBGC ( netdev, "NETDEV %p transmission %p complete\n", netdev, pkb );
|
||||
|
||||
/* Catch data corruption as early as possible */
|
||||
assert ( pkb->list.next != NULL );
|
||||
assert ( pkb->list.prev != NULL );
|
||||
|
||||
list_del ( &pkb->list );
|
||||
free_pkb ( pkb );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user