From ffe6abb83611e1efb7dbacf42ca6079188aea1c8 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sun, 11 Aug 2024 09:33:12 +0200 Subject: [PATCH] string_utils.cpp: add missing char * in illegalFileNameChars list. --- common/string_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/string_utils.cpp b/common/string_utils.cpp index fbd027a6a9..00c223464a 100644 --- a/common/string_utils.cpp +++ b/common/string_utils.cpp @@ -42,7 +42,7 @@ * platforms. This is the list of illegal file name characters for Windows which includes * the illegal file name characters for Linux and OSX. */ -static const char illegalFileNameChars[] = "\\/:\"<>|"; +static const char illegalFileNameChars[] = "\\/:\"<>|*"; wxString ConvertToNewOverbarNotation( const wxString& aOldStr )