Commit 98c99279 authored by Deomid Ryabkov's avatar Deomid Ryabkov Committed by Cesanta Bot

Fix warnings on newer versions of GCC

PUBLISHED_FROM=f1d25145446057fed9e8d634ca637364ca43a5e8
parent cdb8d7b6
...@@ -7604,7 +7604,7 @@ static void mg_scan_directory(struct mg_connection *nc, const char *dir, ...@@ -7604,7 +7604,7 @@ static void mg_scan_directory(struct mg_connection *nc, const char *dir,
const struct mg_serve_http_opts *opts, const struct mg_serve_http_opts *opts,
void (*func)(struct mg_connection *, const char *, void (*func)(struct mg_connection *, const char *,
cs_stat_t *)) { cs_stat_t *)) {
char path[MG_MAX_PATH]; char path[MG_MAX_PATH + 1];
cs_stat_t st; cs_stat_t st;
struct dirent *dp; struct dirent *dp;
DIR *dirp; DIR *dirp;
......
...@@ -2026,7 +2026,7 @@ static void mg_scan_directory(struct mg_connection *nc, const char *dir, ...@@ -2026,7 +2026,7 @@ static void mg_scan_directory(struct mg_connection *nc, const char *dir,
const struct mg_serve_http_opts *opts, const struct mg_serve_http_opts *opts,
void (*func)(struct mg_connection *, const char *, void (*func)(struct mg_connection *, const char *,
cs_stat_t *)) { cs_stat_t *)) {
char path[MG_MAX_PATH]; char path[MG_MAX_PATH + 1];
cs_stat_t st; cs_stat_t st;
struct dirent *dp; struct dirent *dp;
DIR *dirp; DIR *dirp;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment