From: Jean-Philippe Orsini Date: Wed, 24 Sep 2014 09:32:16 +0000 (+0200) Subject: avoid to mix code/decl X-Git-Tag: v1.2.0~148 X-Git-Url: http://git.wpitchoune.net/gitweb/?a=commitdiff_plain;h=2a5d5b70e2ac337967eba4e12aa5248103cdf1d1;hp=acd954104897096ff8ad959d2a4aab093ef6205a;p=psensor.git avoid to mix code/decl --- diff --git a/src/server/server.c b/src/server/server.c index f416147..410bd40 100644 --- a/src/server/server.c +++ b/src/server/server.c @@ -245,12 +245,13 @@ static struct MHD_Response *create_response_file(const char *nurl, static struct MHD_Response * create_response(const char *nurl, const char *method, unsigned int *rp_code) { + char *page, *fpath; struct MHD_Response *resp = NULL; if (!strncmp(nurl, URL_BASE_API_1_1, strlen(URL_BASE_API_1_1))) { resp = create_response_api(nurl, method, rp_code); } else { - char *fpath = get_path(nurl, server_data.www_dir); + fpath = get_path(nurl, server_data.www_dir); resp = create_response_file(nurl, method, rp_code, fpath); @@ -260,7 +261,7 @@ create_response(const char *nurl, const char *method, unsigned int *rp_code) if (resp) return resp; - char *page = strdup(PAGE_NOT_FOUND); + page = strdup(PAGE_NOT_FOUND); *rp_code = MHD_HTTP_NOT_FOUND; return MHD_create_response_from_data(strlen(page),