diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-15 05:17:56 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-15 05:17:56 +0000 |
commit | eb99164fe573f928a1e23c686cddfafdbe9ae10a (patch) | |
tree | eae8bb5b4209240a71a8c3f8e94c84498fcfb101 /ext/DB_File | |
parent | 850fabdf2ccd0a80b987899ff0014695459be38a (diff) | |
download | perl-eb99164fe573f928a1e23c686cddfafdbe9ae10a.tar.gz |
fix leaks in *DBM_File; safemalloc()ed things need to be freed with
safefree() rather than Safefree()
p4raw-id: //depot/perl@5091
Diffstat (limited to 'ext/DB_File')
-rw-r--r-- | ext/DB_File/DB_File.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/DB_File/DB_File.xs b/ext/DB_File/DB_File.xs index 7bc2491cb4..2b76bab722 100644 --- a/ext/DB_File/DB_File.xs +++ b/ext/DB_File/DB_File.xs @@ -1586,7 +1586,7 @@ db_DESTROY(db) if (db->filter_store_value) SvREFCNT_dec(db->filter_store_value) ; #endif /* DBM_FILTERING */ - Safefree(db) ; + safefree(db) ; #ifdef DB_VERSION_MAJOR if (RETVAL > 0) RETVAL = -1 ; |