diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-01-25 23:18:25 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-01-25 23:18:25 +0000 |
commit | 4116122ef9a90b07cffa557ba0b71f9b75e5d034 (patch) | |
tree | aeb818e7daec68a67d746717aa465007c708814c /gv.c | |
parent | 2ae0db35b275229921515ee6fc05d8e0fca2ef1c (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |