GNU bug report logs -
#9118
23.3.50; Don't seed the RNG in message-unique-id
Previous Next
Reported by: Leo <sdl.web <at> gmail.com>
Date: Mon, 18 Jul 2011 16:43:02 UTC
Severity: minor
Tags: wontfix
Found in version 23.3.50
Done: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Leo <sdl.web <at> gmail.com> writes:
> Function message-unique-id seeds the RNG every time it runs and relies
> on its undocumented return value. Should something like this be applied?
>
> --- a/message.el
> +++ b/message.el
> @@ -5484,7 +5484,8 @@
> ;; Don't use microseconds from (current-time), they may be unsupported.
> ;; Instead we use this randomly inited counter.
> (setq message-unique-id-char
> - (% (1+ (or message-unique-id-char (logand (random t) (1- (lsh 1 20)))))
> + (% (1+ (or message-unique-id-char
> + (logand (random most-positive-fixnum) (1- (lsh 1 20)))))
Unfortunately, Emacs doesn't seed itself on startup, so (random x) will
return the same thing every time you start Emacs.
So I don't think changing this is appropriate at this time.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog http://lars.ingebrigtsen.no/
This bug report was last modified 13 years and 357 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.