summaryrefslogtreecommitdiff
path: root/ext/DB_File
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-15 05:17:56 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-15 05:17:56 +0000
commiteb99164fe573f928a1e23c686cddfafdbe9ae10a (patch)
treeeae8bb5b4209240a71a8c3f8e94c84498fcfb101 /ext/DB_File
parent850fabdf2ccd0a80b987899ff0014695459be38a (diff)
downloadperl-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.xs2
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 ;