mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-28 07:28:13 +08:00
Review revision for windows path separator detection in mg_upload
This commit is contained in:
parent
4bb9faaf50
commit
dfb7d928c2
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user