From 8ac598f99250a6c676cd60d4822a196a1b3ff549 Mon Sep 17 00:00:00 2001 From: Itay Cohen Date: Mon, 14 May 2018 18:21:59 +0300 Subject: [PATCH] Fixed x-refs to Address (#495) --- src/Cutter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cutter.cpp b/src/Cutter.cpp index 103b5ab0..a3c97df9 100644 --- a/src/Cutter.cpp +++ b/src/Cutter.cpp @@ -1418,7 +1418,7 @@ QList CutterCore::getXRefs(RVA addr, bool to, bool whole_functi continue; xref.from = xrefObject["from"].toVariant().toULongLong(); - xref.from_str = Core()->cmd("fd " + xrefObject["from"].toString()).trimmed(); + xref.from_str = Core()->cmd("fd " + QString::number(xrefObject["from"].toInt())).trimmed(); if (!whole_function && !to && xref.from != addr) continue;