mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GT-2715 changed string in uninitialized memory to render as "??"
This commit is contained in:
parent
54c650dea2
commit
c7cad61f19
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ public class StringDataInstance {
|
|||
*/
|
||||
public String getStringRepresentation() {
|
||||
|
||||
if (isProbe() || isBadCharSize()) {
|
||||
if (isProbe() || isBadCharSize() || !buf.isInitializedMemory()) {
|
||||
return UNKNOWN;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue