Message ID | 20221010175511.3414357-3-hpoussin@reactos.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix some problems with vvfat in R/W mode | expand |
diff --git a/block/vvfat.c b/block/vvfat.c index ae53f0d7283..392eab5168b 100644 --- a/block/vvfat.c +++ b/block/vvfat.c @@ -499,7 +499,7 @@ static bool valid_filename(const unsigned char *name) (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || c > 127 || - strchr("$%'-_@~`!(){}^#&.+,;=[]", c) != NULL)) + strchr(" $%'-_@~`!(){}^#&.+,;=[]", c) != NULL)) { return false; }