Skip to content
Snippets Groups Projects
  1. Sep 19, 2017
  2. Sep 14, 2017
  3. Aug 17, 2017
  4. Aug 14, 2017
  5. Aug 13, 2017
  6. Aug 11, 2017
  7. Aug 10, 2017
  8. Aug 08, 2017
  9. Jul 25, 2017
  10. Jul 24, 2017
  11. Jul 19, 2017
  12. Jul 06, 2017
  13. Jun 04, 2017
  14. May 22, 2017
  15. May 18, 2017
  16. May 15, 2017
  17. May 12, 2017
    • gabrielC's avatar
      bug fixes from Fujitsu (bug 29) · 893f36e8
      gabrielC authored
      ----------------------------------------------------------
      bug 29
      
      Ttile:
      FDD should be TDD.
      
      Bug Location:
        switch (oai_emulation.info.frame_type[0]) {
        case FDD:
          frame_type = "FDD";
          break;
      
        case TDD:
          frame_type = "FDD";
          break;
        }
      ----------------------------------------------------------
      893f36e8
    • gabrielC's avatar
      bug fixes from Fujitsu (bugs 18, 19, 20) · bdaef795
      gabrielC authored
      ----------------------------------------------------------
      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
  18. May 03, 2017
  19. Apr 25, 2017
  20. Apr 24, 2017
  21. Apr 18, 2017
  22. Apr 17, 2017
  23. Apr 10, 2017
    • Cedric Roux's avatar
      integration fix: change the way to print the version · 10113a35
      Cedric Roux authored
      Using "system" to call "git log" is too error-prone.
      In the test setup, lte-softmodem was blocked because
      "git log" uses a pager ("less") and the pager was
      waiting for the user to press enter.
      
      We could pass "--no-pager" to "git log" but then
      what if someone runs the softmodem out of the source
      tree?
      
      cmake defines PACKAGE_VERSION, we can use that instead,
      as is done in openair-cn.
      10113a35
  24. Apr 03, 2017
  25. Mar 27, 2017
Loading