Adding double quote as illegal character in Windows file names,
...thanks to ilor for pointing this out.
This commit is contained in:
parent
ef2b0a21c4
commit
c1c8a2c94c
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ bool is_illegal_file_char(char c)
|
|||
{
|
||||
return c == '/' || c == '\\' || c == ':'
|
||||
#ifdef WIN32
|
||||
|| c == '?' || c == '|' || c == '<' || c == '>' || c == '*'
|
||||
|| c == '?' || c == '|' || c == '<' || c == '>' || c == '*' || c == '"'
|
||||
#endif
|
||||
;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue