You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2005/10/03 17:15:39 UTC

svn commit: r293365 - /httpd/httpd/branches/2.2.x/server/request.c

Author: colm
Date: Mon Oct  3 08:15:36 2005
New Revision: 293365

URL: http://svn.apache.org/viewcvs?rev=293365&view=rev
Log:
Merge r293364 from trunk.

Modified:
    httpd/httpd/branches/2.2.x/server/request.c

Modified: httpd/httpd/branches/2.2.x/server/request.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/server/request.c?rev=293365&r1=293364&r2=293365&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/server/request.c (original)
+++ httpd/httpd/branches/2.2.x/server/request.c Mon Oct  3 08:15:36 2005
@@ -1581,7 +1581,8 @@
                                                 ap_filter_t *next_filter)
 {
     request_rec *rnew;
-    int res;
+    /* Initialise res, to avoid a gcc warning */
+    int res = HTTP_INTERNAL_SERVER_ERROR; 
     char *udir;
 
     rnew = make_sub_request(r, next_filter);