Browse Source

Fix MSVC debug crash

task/remove_strings
Jessica James 3 years ago
parent
commit
a9509138e7
  1. 2
      src/common/INIConfig.cpp

2
src/common/INIConfig.cpp

@ -141,7 +141,7 @@ bool Jupiter::INIConfig::read_internal(const char *in_filename)
// Truncate spaces // Truncate spaces
--end; --end;
while (isspace(*end)) while (isspace(static_cast<unsigned char>(*end)))
--end; // don't need a safety check since we know there is at least 1 non-space character --end; // don't need a safety check since we know there is at least 1 non-space character
// end now points to a non-space character within the bounds // end now points to a non-space character within the bounds

Loading…
Cancel
Save