]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove some useless 'return' statements.
authorChristophe Jaillet <jailletc36@apache.org>
Sat, 21 Nov 2015 20:52:31 +0000 (20:52 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sat, 21 Nov 2015 20:52:31 +0000 (20:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715570 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/mod_filter.c
modules/filters/mod_include.c

index d3a8b2be3b7f5170590213d325dc84a5b056fd94..7b692233ee007e38f2559de41dba91c8bd843729 100644 (file)
@@ -670,8 +670,6 @@ static void filter_insert(request_rec *r)
         }
 #endif
     }
-
-    return;
 }
 
 static void filter_hooks(apr_pool_t *pool)
index 480911cd178e48c97e3de49bfc91e2277e5de8e2..95ab4d2b22606b962496b83ef4a132d94534a626 100644 (file)
@@ -347,8 +347,6 @@ static void debug_dump_tree(include_ctx_t *ctx, parse_node_t *root)
     if (root->right) root->right->dump_done = 0;
 
     debug_printf(ctx, "     --- End Parse Tree ---\n\n");
-
-    return;
 }
 
 #define DEBUG_INIT(ctx, filter, brigade) do { \
@@ -1677,8 +1675,6 @@ static void ap_ssi_get_tag_and_value(include_ctx_t *ctx, char **tag,
     if (dodecode && *tag_val) {
         decodehtml(*tag_val);
     }
-
-    return;
 }
 
 static int find_file(request_rec *r, const char *directive, const char *tag,