This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Where possible, change gv_fetchfile() to gv_fetchfile_flags(),
authorNicholas Clark <nick@ccl4.org>
Thu, 18 Oct 2007 09:24:42 +0000 (09:24 +0000)
committerNicholas Clark <nick@ccl4.org>
Thu, 18 Oct 2007 09:24:42 +0000 (09:24 +0000)
commit9bde8eb087a2c05d4c8b0394a59d28a09fe5f529
tree998a51c8de29afbe6509961978c7b5b6d5b5f1d9
parentb64cb68ca7e876fc8f2b14e3631335667b719e7e
Where possible, change gv_fetchfile() to gv_fetchfile_flags(),
gv_stashpv() to gv_stashpvn() and gv_fetchpv() to gv_fetchpvn_flags().
Change the len parameter of S_find_in_my_stash() from I32 to STRLEN, as
a pointer the variable needs to be passed onwards, and size matters on
64 bit platforms.
Fix the temporary scribbling of a buffer in Perl_yylex() by using
gv_fetchpvn_flags(), and remove the XXX comment added in change 27641.
Brought to you by the Campaign for the Elimination of strlen().

p4raw-id: //depot/perl@32127
embed.fnc
gv.c
proto.h
sv.c
toke.c