From: Daniel Ruggeri Date: Sat, 13 Apr 2013 00:07:44 +0000 (+0000) Subject: Static var not neccessary here X-Git-Tag: 2.5.0-alpha~5600 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee3815bda99d07e28f5cdb94d4569dc4232600c1;p=apache Static var not neccessary here git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1467523 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util.c b/server/util.c index d332c38990..84dd6d343a 100644 --- a/server/util.c +++ b/server/util.c @@ -2955,7 +2955,7 @@ AP_DECLARE(char *) ap_get_exec_line(apr_pool_t *p, const char *cmd, const char * const * argv) { - static char buf[MAX_STRING_LEN]; + char buf[MAX_STRING_LEN]; apr_procattr_t *procattr; apr_proc_t *proc; apr_file_t *fp;