Ehsan
Ehsan

Reputation: 43

ida pro decompiling incorrect result

recently i tried to decompile in ida pro 6.1 the ida out puts incorrect result , for all i decompile the functions i only receive this code :

int result; // eax@1
return result;

for all functions i decompile instead of the correct decompile out put it only shows that, for example:

int __cdecl sub_975BB0()
{
    int result; // eax@1
    return result;
}

and some of them have null output :

void __cdecl sub_975C50(int a1)
{
  ;
}

the wondering thing it was working since 2 days ago but suddenly it is working like that. i refreshed the ida 6.1 installation but no difference made . Thanks for helping ^^

Upvotes: 3

Views: 3245

Answers (1)

Adriano Silva
Adriano Silva

Reputation: 104

i have same problem, to solve it set your clock(date) to 2014, will work

Upvotes: 8

Related Questions