pp.c, regexec.c: Declare buffers large enough
authorKarl Williamson <public@khwilliamson.com>
Sat, 4 May 2013 19:29:15 +0000 (13:29 -0600)
committerKarl Williamson <public@khwilliamson.com>
Thu, 29 Aug 2013 15:56:08 +0000 (09:56 -0600)
commit632ccf214450c821ffad251189a1b84ad231c2fe
tree6de366beb6c9b2404dd3782cec8f0b74a46e933e
parentde69f3af3da72e3d0ea0adae070cdb4990d7c9bf
pp.c, regexec.c: Declare buffers large enough

These three buffers are not declared with the proper size.  There is
a #define available to use, so use it.  These matter only on EBCDIC
platforms, where the one in pp.c prior to this commit could cause a
buffer overrun there.

The others shouldn't because what is being used is known (smaller) size.
regcomp.c
regexec.c