From dfb7d928c2f098103572c9b76fbbfcdbb7f54364 Mon Sep 17 00:00:00 2001 From: Katerina Blinova <kblin@dolby.com> Date: Fri, 28 Jun 2013 11:05:33 -0700 Subject: [PATCH] Review revision for windows path separator detection in mg_upload --- mongoose.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mongoose.c b/mongoose.c index 762b9091a..348db9a96 100644 --- a/mongoose.c +++ b/mongoose.c @@ -4226,10 +4226,9 @@ int mg_upload(struct mg_connection *conn, const char *destination_dir) { // there is no other thread can save into the same file simultaneously. fp = NULL; // Construct destination file name. Do not allow paths to have slashes. - if ((s = strrchr(fname, '/')) == NULL) { - if ((s = strrchr(fname, '\\')) == NULL) { + if ((s = strrchr(fname, '/')) == NULL && + (s = strrchr(fname, '\\')) == NULL) { s = fname; - } } // Open file in binary mode. TODO: set an exclusive lock. -- GitLab