2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-14 07:11:32 +00:00

Ensure that tcp_rx() always frees its received packet buffer.

This commit is contained in:
Michael Brown 2006-12-05 21:23:23 +00:00
parent 28c711b91d
commit fcc70c9d60

View File

@ -953,7 +953,8 @@ static int tcp_rx ( struct pk_buff *pkb,
* Send data
*/
tcp_senddata ( conn );
return 0;
rc = 0;
goto done;
send_tcp_nomsg:
free_pkb ( conn->tx_pkb );