Skip to content

Commit

Permalink
x64 bits Support
Browse files Browse the repository at this point in the history
- Changes and improvements
  • Loading branch information
ThunderCls committed Nov 22, 2016
1 parent 28c5988 commit 6654129
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file added xAnalyzer/screenshots/analysis_off_x64.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added xAnalyzer/screenshots/analysis_on_x64.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added xAnalyzer/screenshots/arguments_x64.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions xAnalyzer/xanalyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ bool Strip_x64dbg_calls(LPSTR lpszCallText, LPSTR lpszAPIFunction)
int index = 0;
int index_cpy = 0;

while (lpszCallText[index] != '.' && lpszCallText[index] != '&')
while (lpszCallText[index] != '.' && lpszCallText[index] != '&' && lpszCallText[index] != ':')
{
if (lpszCallText[index] == 0)
{
Expand All @@ -360,7 +360,7 @@ bool Strip_x64dbg_calls(LPSTR lpszCallText, LPSTR lpszAPIFunction)
++index; // jump over the "." or the "&"
if (!isalpha(lpszCallText[index])) // if not Api name
{
while (lpszCallText[index] != '_' && lpszCallText[index] != '?') // get the initial bracket
while (lpszCallText[index] != '_' && lpszCallText[index] != '?' && lpszCallText[index] != '(' && lpszCallText[index] != '[') // get the initial bracket
{
if (lpszCallText[index] == 0)
{
Expand Down

0 comments on commit 6654129

Please sign in to comment.