- Fixed several memory errors

This commit is contained in:
2025-08-20 20:57:15 -04:00
parent 037c62bf12
commit fe4c49d092
20 changed files with 463 additions and 387 deletions

View File

@@ -27,7 +27,7 @@ class CStringPrinter:
return 'string'
def to_string(self):
value = "\"" + self.val['_str'].string('', 'replace', self.val['_size'] - 1) + "\""
value = "\"" + self.val['_str'].string('', 'replace', self.val['_size']) + "\""
return value
def display_hint(self):