Skip to content
Snippets Groups Projects
Select Git revision
  • develop default
  • 2023.w43
  • 2023.w42
  • 2023.w41
  • 2023.w40
  • 2023.w39
  • 2023.w38
  • 2023.w37
  • 2023.w36
  • 2023.w34
  • 2023.w33
  • 2023.w32
  • v2.0.0
  • 2023.w31
  • 2023.w30
  • 2023.w29
  • 2023.w28
  • 2023.w27
  • 2023.w26
  • 2023.w25
  • 2023.w24
21 results

SIMU

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    gabrielC authored and Cedric Roux committed
    ----------------------------------------------------------
    bug 18
    
    Ttile:
    Probably he/she wants to copy the contents of arrays, but
    this coding doesn't copy anything, moreover index overflow
    occurs.
    
    Bug Location:
    u2e_t[UE_id][eNB_id]->tx_data[3]=tx[eNB_id][3];
    u2e_t[UE_id][eNB_id]->rx_data[3]=rx[NB_eNB_INST+UE_id][3];
    
    Note:
    Detected by CppCheck
    ----------------------------------------------------------
    bug 19
    
    Title:
    Probably he/she wants to copy the contents of arrays, but
    this coding doesn't copy anything, moreover index overflow
    occurs.
    
    Bug Location:
    e2u_t[eNB_id][UE_id]->tx_data[3]=tx[NB_eNB_INST+UE_id][3];
    e2u_t[eNB_id][UE_id]->rx_data[3]=rx[eNB_id][3];
    
    Note:
    Detected by CppCheck
    ----------------------------------------------------------
    bug 20
    
    Title:
    Probably he/she wants to copy the contents of arrays, but
    this coding doesn't copy anything, moreover index overflow
    occurs.
    
    Bug Location:
    tx_data[3]=cthread->tx_data[3];
    rx_data[3]=cthread->rx_data[3];
    
    Note:
    Detected by CppCheck
    ----------------------------------------------------------
    bdaef795
    History
    Name Last commit Last update
    ..