From f3de5dcfe6db72846da938b30ad1e5a84c0de585 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sat, 21 Nov 2015 20:42:39 +0000 Subject: Remove some useless 'return' statements. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715567 13f79535-47bb-0310-9956-ffa450edef68 --- modules/cache/mod_socache_dbm.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'modules/cache') diff --git a/modules/cache/mod_socache_dbm.c b/modules/cache/mod_socache_dbm.c index 44ff040b45..4460dffd27 100644 --- a/modules/cache/mod_socache_dbm.c +++ b/modules/cache/mod_socache_dbm.c @@ -184,8 +184,6 @@ static void socache_dbm_destroy(ap_socache_instance_t *ctx, server_rec *s) unlink(apr_pstrcat(ctx->pool, ctx->data_file, ".pag", NULL)); unlink(apr_pstrcat(ctx->pool, ctx->data_file, ".db", NULL)); unlink(ctx->data_file); - - return; } static apr_status_t socache_dbm_store(ap_socache_instance_t *ctx, @@ -510,7 +508,6 @@ static void socache_dbm_status(ap_socache_instance_t *ctx, request_rec *r, ap_rprintf(r, "CacheCurrentSize: %ld\n", size); ap_rprintf(r, "CacheAvgEntrySize: %d\n", avg); } - return; } static apr_status_t socache_dbm_iterate(ap_socache_instance_t *ctx, -- cgit v1.2.3