Sfoglia il codice sorgente

Add missing call to free_iob().

tags/v0.9.3
Michael Brown 17 anni fa
parent
commit
0316eaf85d
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1
    0
      src/drivers/net/rtl8139.c

+ 1
- 0
src/drivers/net/rtl8139.c Vedi File

@@ -372,6 +372,7 @@ static int rtl_transmit ( struct net_device *netdev, struct io_buffer *iobuf ) {
372 372
 	/* Check for space in TX ring */
373 373
 	if ( rtl->tx.iobuf[rtl->tx.next] != NULL ) {
374 374
 		printf ( "TX overflow\n" );
375
+		free_iob ( iobuf );
375 376
 		return -ENOBUFS;
376 377
 	}
377 378
 

Loading…
Annulla
Salva