GT-2715 changed string in uninitialized memory to render as "??"

This commit is contained in:
ghidra1 2019-05-09 18:41:57 -04:00
parent 54c650dea2
commit c7cad61f19

View file

@ -625,7 +625,7 @@ public class StringDataInstance {
*/
public String getStringRepresentation() {
if (isProbe() || isBadCharSize()) {
if (isProbe() || isBadCharSize() || !buf.isInitializedMemory()) {
return UNKNOWN;
}