CVS commit: src/common/lib/libc/stdlib

2020-02-22 Thread Santhosh Raju
Module Name:src Committed By: fox Date: Sat Feb 22 14:47:29 UTC 2020 Modified Files: src/common/lib/libc/stdlib: random.c Log Message: common/lib/libc/stdlib: Fix possible signed integer overflow. common/lib/libc/stdlib/random.c:482:6 can result in signed integer

CVS commit: src/common/lib/libc/stdlib

2016-11-05 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sat Nov 5 21:11:30 UTC 2016 Modified Files: src/common/lib/libc/stdlib: _strtoul.h Log Message: Set *endptr in all paths out of strtoul and family. XXX pullup-6 XXX pullup-7 To generate a diff of this commit: cvs rdiff -u

CVS commit: src/common/lib/libc/stdlib

2016-02-07 Thread David A. Holland
Module Name:src Committed By: dholland Date: Mon Feb 8 05:27:24 UTC 2016 Modified Files: src/common/lib/libc/stdlib: random.c Log Message: whitespace To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/common/lib/libc/stdlib/random.c Please note that diffs

CVS commit: src/common/lib/libc/stdlib

2015-11-13 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri Nov 13 16:02:08 UTC 2015 Modified Files: src/common/lib/libc/stdlib: _strtol.h _strtoul.h Log Message: comment out 0{b,B} handling. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10

CVS commit: src/common/lib/libc/stdlib

2015-11-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Nov 12 17:31:43 UTC 2015 Modified Files: src/common/lib/libc/stdlib: _strtol.h Log Message: Fix capitalization To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/common/lib/libc/stdlib/_strtol.h Please note

CVS commit: src/common/lib/libc/stdlib

2015-11-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Nov 12 17:23:51 UTC 2015 Modified Files: src/common/lib/libc/stdlib: _strtol.h _strtoul.h Log Message: Recognize 0[bB] as binary (base 2) To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8

CVS commit: src/common/lib/libc/stdlib

2015-01-18 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Jan 18 17:55:22 UTC 2015 Modified Files: src/common/lib/libc/stdlib: _strtoi.h Log Message: match variable names with man page (Kamil Rytarowski) To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/common/lib/libc/stdlib

2015-01-16 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri Jan 16 18:35:28 UTC 2015 Added Files: src/common/lib/libc/stdlib: _strtoi.h strtoi.c strtou.c Log Message: add strto{i,u} from Kamil Rytarowski as discussed in tech-userlevel. To generate a diff of this commit: cvs rdiff

CVS commit: src/common/lib/libc/stdlib

2014-06-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Jun 12 20:59:46 UTC 2014 Modified Files: src/common/lib/libc/stdlib: random.c Log Message: update for the new function signatures of initstate/srandom To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4

CVS commit: src/common/lib/libc/stdlib

2013-12-02 Thread Joerg Sonnenberger
Module Name:src Committed By: joerg Date: Mon Dec 2 12:20:44 UTC 2013 Modified Files: src/common/lib/libc/stdlib: strtoimax.c Log Message: Fix aliases. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/common/lib/libc/stdlib/strtoimax.c Please note that

CVS commit: src/common/lib/libc/stdlib

2013-04-16 Thread Joerg Sonnenberger
Module Name:src Committed By: joerg Date: Tue Apr 16 19:34:58 UTC 2013 Modified Files: src/common/lib/libc/stdlib: _strtol.h _strtoul.h Log Message: Do not use isalpha here, since we explicitly only support the Portable Character Set as base and in theory a locale could

CVS commit: src/common/lib/libc/stdlib

2012-03-22 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Mar 22 15:57:29 UTC 2012 Modified Files: src/common/lib/libc/stdlib: _strtoul.h Log Message: bring the casts to the operands, not the operation results. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3

CVS commit: src/common/lib/libc/stdlib

2009-05-20 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed May 20 22:03:29 UTC 2009 Modified Files: src/common/lib/libc/stdlib: _strtol.h Log Message: Set endptr if the base is not supported. The opengroup spec does not special case this condition. Note: glibc has the same problem.