ソースを参照

[xhci] Avoid accessing beyond end of endpoint context array

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 7年前
コミット
6124c0ebfa
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      src/drivers/usb/xhci.c

+ 1
- 1
src/drivers/usb/xhci.c ファイルの表示

@@ -1558,7 +1558,7 @@ static void xhci_transfer ( struct xhci_device *xhci,
1558 1558
 	}
1559 1559
 
1560 1560
 	/* Identify endpoint */
1561
-	if ( ( trb->endpoint > XHCI_CTX_END ) ||
1561
+	if ( ( trb->endpoint >= XHCI_CTX_END ) ||
1562 1562
 	     ( ( endpoint = slot->endpoint[trb->endpoint] ) == NULL ) ) {
1563 1563
 		DBGC ( xhci, "XHCI %s slot %d transfer event invalid epid "
1564 1564
 		       "%d:\n", xhci->name, slot->id, trb->endpoint );

読み込み中…
キャンセル
保存