1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Initialize all ap_file_t's to NULL. This allows ap_open and ap_stat to

work together without causing memory leaks.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84393 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Bloom
2000-01-04 19:01:04 +00:00
parent d453b6e198
commit 528afcc4d6
12 changed files with 28 additions and 29 deletions

View File

@@ -65,7 +65,7 @@
static int asis_handler(request_rec *r)
{
ap_file_t *f;
ap_file_t *f = NULL;
ap_status_t status;
const char *location;