forked from aria2/aria2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNEWS
More file actions
31 lines (20 loc) · 650 Bytes
/
Copy pathNEWS
File metadata and controls
31 lines (20 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
aria2 1.31.0
============
Release Note
------------
This release fixes assertion error in
SimpleRandomizer::getRandomBytes. It adds new option
content-disposition-default-utf8.
Changes
-------
* Better error message when local file status cannot be retrieved
GH-836
* Fix assertion failure in SimpleRandomizer::getRandomBytes
errno might not be initialized to 0, and we may get both rv == -1
and errno != ENOSYS. This leads to assertion failure. Since
getrandom_linux always returns -1 on failure, checking errno is
useless in this function.
GH-823
* Add option content-disposition-default-utf8
Patch from JimmyZ
GH-813