Fix 'invalid argument' to boost::interprocess::shared_memory_object

This commit is contained in:
Braden Ganetsky
2024-06-06 23:05:43 -05:00
parent 5827bf2574
commit 9995c9beb0

View File

@ -298,6 +298,7 @@ std::string shm_name_sanitize(std::string const& exe_name)
case '\\': case '\\':
case '-': case '-':
case '_': case '_':
case '+':
return true; return true;
default: default: