NEWS 650 B

12345678910111213141516171819202122232425262728293031
  1. aria2 1.31.0
  2. ============
  3. Release Note
  4. ------------
  5. This release fixes assertion error in
  6. SimpleRandomizer::getRandomBytes. It adds new option
  7. content-disposition-default-utf8.
  8. Changes
  9. -------
  10. * Better error message when local file status cannot be retrieved
  11. GH-836
  12. * Fix assertion failure in SimpleRandomizer::getRandomBytes
  13. errno might not be initialized to 0, and we may get both rv == -1
  14. and errno != ENOSYS. This leads to assertion failure. Since
  15. getrandom_linux always returns -1 on failure, checking errno is
  16. useless in this function.
  17. GH-823
  18. * Add option content-disposition-default-utf8
  19. Patch from JimmyZ
  20. GH-813