Skip to content

Commit

Permalink
Update NEWS.
Browse files Browse the repository at this point in the history
  • Loading branch information
besser82 committed Nov 7, 2024
1 parent efe79d7 commit 17a5756
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ Version 4.4.37
* Several fixes to the manpages (issue #185).
* Add binary compatibility for x86_64 GNU/Hurd (issue #189).
* Only test the needed makecontext signature during configure (issue #178).
* crypt and crypt_gensalt now use per-thread storage areas for their
output, allocated upon the first call in each thread that uses them.
This makes it safe to call these functions from multiple threads
simultaneously (but consecutive calls will still clobber the
previous output).
This feature is a safety net against sloppy coding. Programs are
still strongly encouraged to use the reentrant functions instead,
both because this safety net is not guaranteed by any standard
(although we are informed that Solaris also does this) and because
this introduces some overhead for initializing a buffer of
'sizeof (crypt_data)' as well as for copying the computed output
to the thread-local output buffer for each invocation of crypt.

Version 4.4.36
* Fix left over bits failing with Perl v5.38.0 (issue #173).
Expand Down

0 comments on commit 17a5756

Please sign in to comment.