1. 03 Dec, 2023 2 commits
  2. 01 Dec, 2023 3 commits
  3. 30 Nov, 2023 2 commits
  4. 29 Nov, 2023 2 commits
  5. 28 Nov, 2023 3 commits
  6. 14 Nov, 2023 1 commit
  7. 13 Nov, 2023 1 commit
  8. 12 Nov, 2023 1 commit
  9. 09 Nov, 2023 3 commits
  10. 10 Oct, 2023 2 commits
  11. 06 Oct, 2023 1 commit
  12. 07 Sep, 2023 1 commit
  13. 01 Sep, 2023 1 commit
  14. 31 Aug, 2023 2 commits
  15. 28 Aug, 2023 1 commit
  16. 24 Jul, 2023 1 commit
  17. 11 Jul, 2023 1 commit
  18. 05 Jul, 2023 3 commits
  19. 15 Jun, 2023 5 commits
  20. 05 May, 2023 2 commits
  21. 04 May, 2023 2 commits
    • Pau Espin Pedrol's avatar
    • tangzhikun's avatar
      fix issue #126: decoding extensible CHOICE error · fc23d52b
      tangzhikun authored
          The constraints ct was not effective for extensible CHOICE, so if ct && ct->flags & APC_EXTENSIBLE was true,
          ct was set to 0. Using normal CHOICE constraint in decoding extensible CHOICE was weird.
          We should change the normal CHOICE constraint to extensible CHOICE constraint when decoding extensible CHOICE,
          the extensible CHOICE constraint was lb=0,ub=specs->tag2el_count-specs->ext_start-1. So the conditional structure
          should be if specs && specs->tag2el_count > specs->ext_start, then decoding the CHOICE which range
          was specs->tag2el_count - specs->ext_start, and add specs->ext_start to value in the last.
      fc23d52b