diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-22 17:37:26 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-22 17:37:26 +0000 |
commit | 929e5b34a48f2f21c82b4ada33e5aca96564df80 (patch) | |
tree | 786ea360678a7782581d5fbade76bf82abcc5155 /perl.c | |
parent | 7fc731078209e8c26ed8bba477edfd90724c7146 (diff) | |
download | perl-929e5b34a48f2f21c82b4ada33e5aca96564df80.tar.gz |
In S_init_perllib(), initialise perl5lib to NULL, to keep trace flow happy.
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4093,7 +4093,7 @@ S_init_perllib(pTHX) { dVAR; #ifndef VMS - const char *perl5lib; + const char *perl5lib = NULL; #endif const char *s; #ifdef WIN32 |