History log of /openbsd-src/lib/libc/regex/regexec.c (Results 1 – 14 of 14)
Revision Date Author Comments
# d1a1db7f 11-Jul-2018 martijn <martijn@openbsd.org>

Drop a const-bomb on regexec. It's probably not a good idea to remove a
const promise when processing it in the regex engine.

Minor tweak and OK schwarze@


# e786dc0a 11-Oct-2014 doug <doug@openbsd.org>

Userland reallocarray() audit.

Avoid potential integer overflow in the size argument of malloc() and
realloc() by using reallocarray() to avoid unchecked multiplication.

ok deraadt@


# 2be36617 17-Apr-2013 tedu <tedu@openbsd.org>

silence some warnings by adding prototypes, casts, and headers as
appropriate. in regex, stop using the struct hack for a fixed size array


# 53b37aa9 05-Aug-2005 espie <espie@openbsd.org>

zap rcsid


# a1a76537 30-Nov-2004 otto <otto@openbsd.org>

remove useless comments, once used for header file generation and delete
parameter names from prototypes. ok millert@


# 3d7c72a1 17-Oct-2004 otto <otto@openbsd.org>

ansify and deregister; no change in obj code. ok millert@


# 6580fee3 02-Jun-2003 millert <millert@openbsd.org>

Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999. Proofed by myself and Theo.


# 63d6eaa8 30-Apr-1997 tholo <tholo@openbsd.org>

Remove dead code and variables


# 442a6afd 28-Apr-1997 millert <millert@openbsd.org>

- cast usages of *printf() to void since we don't check return val
- move an assert to be *before* a strcpy() where it can do some good.
- integrate NetBSD fixes for 64-bit machines (NetBSD PR #3450,

- cast usages of *printf() to void since we don't check return val
- move an assert to be *before* a strcpy() where it can do some good.
- integrate NetBSD fixes for 64-bit machines (NetBSD PR #3450, Ross Harvey)
- add lite2 tags

show more ...


# b37692f8 12-Apr-1997 millert <millert@openbsd.org>

long -> int to fix 64bit issues. This breaks 16bit machines but since we don't have any 16bit ports...) The alternative is to use int32_t's but then this code will break when/if int > 32bits which i

long -> int to fix 64bit issues. This breaks 16bit machines but since we don't have any 16bit ports...) The alternative is to use int32_t's but then this code will break when/if int > 32bits which is not so unlikely. Fixes NetBSD PR #3450 from Ross Harvey (but in a different way)

show more ...


# c8f91e0d 15-Sep-1996 tholo <tholo@openbsd.org>

Remove dead code
Remove unused variables
Silence some warnings
lint(1) is your friend


# e9b2b68c 19-Aug-1996 tholo <tholo@openbsd.org>

Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly


# e9a182dd 25-Mar-1996 tholo <tholo@openbsd.org>

Make a proper lvalue in INC


# df930be7 18-Oct-1995 deraadt <deraadt@openbsd.org>

initial import of NetBSD tree