MFC r286344: find: Fix segfault with very long path in -exec/-ok ... {} \;.
authorjilles <jilles@FreeBSD.org>
Fri, 28 Aug 2015 20:53:08 +0000 (20:53 +0000)
committerjilles <jilles@FreeBSD.org>
Fri, 28 Aug 2015 20:53:08 +0000 (20:53 +0000)
commit461d06c693c3223ca34cea5045561db8eab04880
tree95afb4bdf6c2df78b6446422273e67f919cac46e
parent655a5b9a1671aa2e1c7c81a6aabd4e7792f8dab5
MFC r286344: find: Fix segfault with very long path in -exec/-ok ... {} \;.

If the resulting argument is longer than MAXPATHLEN, realloc() was called to
extend the space, but the new pointer was not correctly stored.

Different from what OpenBSD has done, rewrite brace_subst() to calculate the
necessary space first and realloc() at most once.

As before, the e_len fields are not updated in case of a realloc.
Therefore, a following long argument will do another realloc.

PR: 201750
usr.bin/find/extern.h
usr.bin/find/misc.c