This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.c: Silence uninit compiler warning
authorKarl Williamson <khw@cpan.org>
Mon, 19 Feb 2018 19:14:06 +0000 (12:14 -0700)
committerKarl Williamson <khw@cpan.org>
Tue, 20 Feb 2018 03:47:10 +0000 (20:47 -0700)
commit3eb4defc9453e752f5aacd8d4934a502cc2d2138
treefd9618938c7087122cdbeb4beff83d92ba5d6885
parent70bd58e99cf8c4f66531ed2261be494f9fe83a00
regcomp.c: Silence uninit compiler warning

This warning (only known on one compiler at the moment) is probably
wrong, but by setting this to NULL, we avoid the warning, and should
segfault if the warning were correct, instead of using uninitialized
data.
regcomp.c