From a2239c2b4b86a3ecaf19282143fa03c0b4366ac4 Mon Sep 17 00:00:00 2001 From: KIU Shueng Chuan Date: Sun, 24 Feb 2013 23:29:05 +0800 Subject: [PATCH] squash mingw variable set but not used warning --- mongoose.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mongoose.c b/mongoose.c index 8459a43e..a17d1e45 100644 --- a/mongoose.c +++ b/mongoose.c @@ -1018,14 +1018,11 @@ static void change_slashes_to_backslashes(char *path) { // Encode 'path' which is assumed UTF-8 string, into UNICODE string. // wbuf and wbuf_len is a target buffer and its length. static void to_unicode(const char *path, wchar_t *wbuf, size_t wbuf_len) { - char buf[PATH_MAX], buf2[PATH_MAX], *p; + char buf[PATH_MAX], buf2[PATH_MAX]; mg_strlcpy(buf, path, sizeof(buf)); change_slashes_to_backslashes(buf); - // Point p to the end of the file name - p = buf + strlen(buf) - 1; - // Convert to Unicode and back. If doubly-converted string does not // match the original, something is fishy, reject. memset(wbuf, 0, wbuf_len * sizeof(wchar_t));