Skip to content

Commit

Permalink
Fix #3087 - use new RzStrEnc for RzBinString (#3088)
Browse files Browse the repository at this point in the history
  • Loading branch information
XVilka committed Jan 29, 2023
1 parent 7f0daf9 commit baeffba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Cutter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3330,7 +3330,7 @@ QList<StringDescription> CutterCore::getAllStrings()
StringDescription string;
string.string = rz_str_escape_utf8_keep_printable(str->string, &opt);
string.vaddr = obj ? rva(obj, str->paddr, str->vaddr, va) : str->paddr;
string.type = str->type;
string.type = rz_str_enc_as_string(str->type);
string.size = str->size;
string.length = str->length;
string.section = section ? section->name : "";
Expand Down

0 comments on commit baeffba

Please sign in to comment.