Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
- fixed "small buffer" issue (crash) on large modules with long instructions. ( closes #43  and closes #47 )
- fixed huge amount of ram usage for extended analysis on modules with a big number of functions/parameters ( closes #44 )
  • Loading branch information
ThunderCls committed Jul 18, 2020
1 parent b9e8299 commit 11bcbaf
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 114 deletions.
2 changes: 1 addition & 1 deletion xAnalyzer/plugin.cpp
Expand Up @@ -126,7 +126,7 @@ PLUG_EXPORT void CBMENUENTRY(CBTYPE cbType, PLUG_CB_MENUENTRY* info)
mbp.lpszText = "[" PLUGIN_NAME " " PLUGIN_VERSION_STR"]\n"
"Extended analysis for static code \n\n"
"http://github.com/ThunderCls/xAnalyzer\n"
"Coded By : ThunderCls - 2019\n"
"Coded By : ThunderCls - 2020\n"
"Based on: APIInfo Plugin by mrfearless";
mbp.dwStyle = MB_USERICON | MB_OK;
mbp.lpszIcon = MAKEINTRESOURCE(IDI_ICON1);
Expand Down
2 changes: 1 addition & 1 deletion xAnalyzer/plugin.h
Expand Up @@ -5,7 +5,7 @@
//plugin data
#define PLUGIN_NAME "xAnalyzer"
#define PLUGIN_VERSION 2
#define PLUGIN_VERSION_STR "2.5.4"
#define PLUGIN_VERSION_STR "2.5.5"

enum
{
Expand Down

0 comments on commit 11bcbaf

Please sign in to comment.