Fix truncated string issue in the sixref plugin

This commit is contained in:
pancake 2021-11-05 01:13:58 +01:00
parent f0ffdde6b6
commit 020d2e01d4

View File

@ -267,7 +267,7 @@ static void siguza_xrefs(RCore *core, ut64 search, ut64 start, int lenbytes) {
ut64 end = start + lenbytes;
ut64 cursor = start;
int lenbytes_rem = lenbytes;
char target_ref[24];
char target_ref[64];
if (search == 0) {
snprintf (target_ref, sizeof (target_ref), "all xrefs");