Use safe_string when printing %s with Memory::GetCharPointer.

This commit is contained in:
ANR2ME 2022-08-06 11:22:38 +07:00
parent 3b7a33ddd8
commit 0b3fdf0cef
3 changed files with 7 additions and 1 deletions

View file

@ -55,6 +55,10 @@ void truncate_cpy(char *dest, size_t destSize, const char *src) {
}
}
const char* safe_string(const char* s) {
return s ? s : "(null)";
}
long parseHexLong(std::string s) {
long value = 0;