regexec.c, locale.c: Silence some compiler warnings
authorKarl Williamson <public@khwilliamson.com>
Thu, 6 Feb 2014 16:57:51 +0000 (09:57 -0700)
committerKarl Williamson <public@khwilliamson.com>
Wed, 12 Feb 2014 17:52:57 +0000 (10:52 -0700)
commita67150204eb6dd913846b8d3742550fb152461e1
treed49037ebebfebf35e9b5671afb4d1e9a127da69b
parent633f0fd2ca244ca83cc99b3af3a7d3ac2931850b
regexec.c, locale.c: Silence some compiler warnings

For regexec.c, one compiler amongst our smokers believes there is a path
where this array can be used uninitialized; it's easiest to just
initialize it, even though I think the compiler is wrong, unless it is
optimizing incorrectly, in which case, it would be still be best to
initialize it.

For locale.c, this is just the well-known gcc bug that they refuse to
fix concerning a (void) cast when the function has been declared to
require not ignoring the resul
locale.c
regexec.c