Kaynağa Gözat

Merge pull request #1305 from Ryzee119/patch-1

OHCI: Fix array out of bounds issue
Ha Thach 4 yıl önce
ebeveyn
işleme
c6cde724f6
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      src/portable/ohci/ohci.h

+ 1 - 1
src/portable/ohci/ohci.h

@@ -159,7 +159,7 @@ typedef struct TU_ATTR_ALIGNED(256)
   struct {
     ohci_ed_t ed;
     ohci_gtd_t gtd;
-  }control[CFG_TUH_DEVICE_MAX+1];
+  }control[CFG_TUH_DEVICE_MAX+CFG_TUH_HUB+1];
 
   //  ochi_itd_t itd[OHCI_MAX_ITD]; // itd requires alignment of 32
   ohci_ed_t ed_pool[HCD_MAX_ENDPOINT];