1
0
Fork 0

DBG: resolved issue #841 (fixed inter modular calls)

This commit is contained in:
mrexodia 2016-07-13 08:51:55 +02:00
parent 862892e9c8
commit cdd3194d43
No known key found for this signature in database
GPG Key ID: D72F9A4FAA0073B4
1 changed files with 1 additions and 1 deletions

View File

@ -1454,7 +1454,7 @@ static bool cbModCallFind(Capstone* disasm, BASIC_INSTRUCTION_INFO* basicinfo, R
if(basicinfo->call) //we are looking for calls
{
duint ptr = basicinfo->addr > 0 ? basicinfo->addr : basicinfo->memory.value;
found = DbgGetLabelAt(ptr, SEG_DEFAULT, label) && !LabelGet(ptr, label) && DbgGetModuleAt(ptr, module); //a non-user label
found = DbgGetLabelAt(ptr, SEG_DEFAULT, label) && !LabelGet(ptr, label) && !strstr(label, "sub_") && DbgGetModuleAt(ptr, module); //a non-user label
}
if(found)
{