X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuhttpd.git;a=blobdiff_plain;f=file.c;h=23222b9b15e07c5fe578e9968d3bc69b952db1f1;hp=7091ef78e4cdbb9d684b1f75a356ba8748ac11b8;hb=8515c92b9302b258be10df5c5cee240dd4b137f6;hpb=d779a5dc390b9c6e1ed32cdd287997f81ee88d37 diff --git a/file.c b/file.c index 7091ef7..23222b9 100644 --- a/file.c +++ b/file.c @@ -127,7 +127,8 @@ next: /* Returns NULL on error. ** NB: improperly encoded URL should give client 400 [Bad Syntax]; returning ** NULL here causes 404 [Not Found], but that's not too unreasonable. */ -struct path_info * uh_path_lookup(struct client *cl, const char *url) +static struct path_info * +uh_path_lookup(struct client *cl, const char *url) { static char path_phys[PATH_MAX]; static char path_info[PATH_MAX]; @@ -585,6 +586,7 @@ static void uh_file_data(struct client *cl, struct path_info *pi, int fd) cl->data.file.fd = fd; cl->dispatch_write_cb = file_write_cb; cl->dispatch_free = uh_file_free; + cl->dispatch_close_fds = uh_file_free; file_write_cb(cl); }