summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-01-25 23:18:25 +0000
committerNicholas Clark <nick@ccl4.org>2007-01-25 23:18:25 +0000
commit4116122ef9a90b07cffa557ba0b71f9b75e5d034 (patch)
treeaeb818e7daec68a67d746717aa465007c708814c /gv.c
parent2ae0db35b275229921515ee6fc05d8e0fca2ef1c (diff)
downloadperl-4116122ef9a90b07cffa557ba0b71f9b75e5d034.tar.gz
Convert the last remaining 256 byte "small"bufs to 128 bytes.
(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
Diffstat (limited to 'gv.c')
-rw-r--r--gv.c2
1 files changed, 1 insertions, 1 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;