From 16344cc34ef6e973d68abec3ea10c8e662a3e6df Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Sun, 20 Jan 2002 05:02:52 +0000 Subject: [PATCH] Forgot to remove the return from a void function --- ext/db/db.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/db/db.c b/ext/db/db.c index ac24379940..09e58e2825 100644 --- a/ext/db/db.c +++ b/ext/db/db.c @@ -463,8 +463,6 @@ void php_dbm_close(zend_rsrc_list_entry *rsrc TSRMLS_DC) if (info->filename) efree(info->filename); if (info->lockfn) efree(info->lockfn); efree(info); - - return(ret); } /* }}} */ -- 2.40.0