summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gv.c2
-rw-r--r--toke.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gv.c b/gv.c
index 39d7a616fb..e1f1299142 100644
--- a/gv.c
+++ b/gv.c
@@ -105,7 +105,7 @@ GV *
Perl_gv_fetchfile(pTHX_ const char *name)
{
dVAR;
- char smallbuf[256];
+ char smallbuf[128];
char *tmpbuf;
STRLEN tmplen;
GV *gv;
diff --git a/toke.c b/toke.c
index d4930d9f1d..d3c7be6ab5 100644
--- a/toke.c
+++ b/toke.c
@@ -790,7 +790,7 @@ S_incline(pTHX_ char *s)
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);