Use safe_string when printing %s with Memory::GetCharPointer.
This commit is contained in:
parent
3b7a33ddd8
commit
0b3fdf0cef
3 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue