mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-1994 corrected category path escaping
This commit is contained in:
parent
37f87c4874
commit
d134531f5d
1 changed files with 2 additions and 2 deletions
|
@ -485,11 +485,11 @@ public class DataTypeUtilities {
|
|||
StringBuilder buf = new StringBuilder();
|
||||
for (String n : namespace.getParentNamespace().getPathList(true)) {
|
||||
buf.append(CategoryPath.DELIMITER_STRING);
|
||||
buf.append(n);
|
||||
buf.append(CategoryPath.escapeString(n));
|
||||
}
|
||||
paths[PARENT_NAMESPACE_PATH_INDEX] = buf.toString();
|
||||
buf.append(CategoryPath.DELIMITER_STRING);
|
||||
buf.append(namespace.getName());
|
||||
buf.append(CategoryPath.escapeString(namespace.getName()));
|
||||
paths[NAMESPACE_PATH_INDEX] = buf.toString();
|
||||
return paths;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue