Adding double quote as illegal character in Windows file names,
...thanks to ilor for pointing this out.
This commit is contained in:
parent
e4fcaf9638
commit
2e3fb97a12
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,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