You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2015/11/21 21:42:40 UTC

svn commit: r1715567 - /httpd/httpd/trunk/modules/cache/mod_socache_dbm.c

Author: jailletc36
Date: Sat Nov 21 20:42:39 2015
New Revision: 1715567

URL: http://svn.apache.org/viewvc?rev=1715567&view=rev
Log:
Remove some useless 'return' statements.

Modified:
    httpd/httpd/trunk/modules/cache/mod_socache_dbm.c

Modified: httpd/httpd/trunk/modules/cache/mod_socache_dbm.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_socache_dbm.c?rev=1715567&r1=1715566&r2=1715567&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_socache_dbm.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_socache_dbm.c Sat Nov 21 20:42:39 2015
@@ -184,8 +184,6 @@ static void socache_dbm_destroy(ap_socac
     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_socach
         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,