diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-08 02:24:51 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-08 02:24:51 +0000 |
commit | 53e3a7fbbea8d5be9804b357b16a71acd614d04a (patch) | |
tree | 266c37172282611c99df8f2dce482559eb2a7016 /ext/GDBM_File | |
parent | 23f1ca44d37416af3607cb447a1cb56c28dfb289 (diff) | |
download | perl-53e3a7fbbea8d5be9804b357b16a71acd614d04a.tar.gz |
Replace #6721, GDBM, system malloc, and LEAKTEST.
p4raw-id: //depot/perl@8364
Diffstat (limited to 'ext/GDBM_File')
-rw-r--r-- | ext/GDBM_File/GDBM_File.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/GDBM_File/GDBM_File.xs b/ext/GDBM_File/GDBM_File.xs index 13123ef540..b4d3b3d29c 100644 --- a/ext/GDBM_File/GDBM_File.xs +++ b/ext/GDBM_File/GDBM_File.xs @@ -56,7 +56,7 @@ not_here(char *s) static void output_datum(pTHX_ SV *arg, char *str, int size) { -#if !defined(MYMALLOC) || (defined(MYMALLOC) && defined(PERL_POLLUTE_MALLOC) && !defined(LEAKTEST)) +#if (!defined(MYMALLOC) || (defined(MYMALLOC) && defined(PERL_POLLUTE_MALLOC))) && !defined(LEAKTEST) sv_usepvn(arg, str, size); #else sv_setpvn(arg, str, size); |