Third Degree finding:
reading uninitialized local variable smallbuf + 8 bytes of Perl_gv_fetchfile
p4raw-id: //depot/perl@8893
GV *
Perl_gv_fetchfile(pTHX_ const char *name)
{
- char smallbuf[256];
+ char smallbuf[256] = { 0 };
char *tmpbuf;
STRLEN tmplen;
GV *gv;