(The actual size doesn't matter, as the buffers are only there to
save a malloc() for the common, short, case. Coverage reports suggest
that we aren't actually testing the long case. Yet - will fix this)
p4raw-id: //depot/perl@29987
Perl_gv_fetchfile(pTHX_ const char *name)
{
dVAR;
- char smallbuf[256];
+ char smallbuf[128];
char *tmpbuf;
STRLEN tmplen;
GV *gv;
if (tmplen > 7 && strnEQ(cf, "(eval ", 6)) {
/* must copy *{"::_<(eval N)[oldfilename:L]"}
* to *{"::_<newfilename"} */
- char smallbuf[256], smallbuf2[256];
+ char smallbuf[128], smallbuf2[128];
char *tmpbuf, *tmpbuf2;
GV **gvp, *gv2;
STRLEN tmplen2 = strlen(s);