From 4bb9faaf50654d375a0e6a0410382722695277d9 Mon Sep 17 00:00:00 2001
From: Katerina Blinova <kblin@dolby.com>
Date: Thu, 27 Jun 2013 11:46:52 -0700
Subject: [PATCH] Detect Window's style slashes in mg_upload file names

---
 mongoose.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/mongoose.c b/mongoose.c
index 1293836b4..762b9091a 100644
--- a/mongoose.c
+++ b/mongoose.c
@@ -4227,8 +4227,11 @@ int mg_upload(struct mg_connection *conn, const char *destination_dir) {
     fp = NULL;
     // Construct destination file name. Do not allow paths to have slashes.
     if ((s = strrchr(fname, '/')) == NULL) {
-      s = fname;
+        if ((s = strrchr(fname, '\\')) == NULL) {
+            s = fname;
+        }
     }
+    
     // Open file in binary mode. TODO: set an exclusive lock.
     snprintf(path, sizeof(path), "%s/%s", destination_dir, s);
     if ((fp = fopen(path, "wb")) == NULL) {
-- 
GitLab