Skip to content

Commit

Permalink
actually better filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSapps committed Jun 27, 2020
1 parent 06226bb commit 9934f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AliveHookManager/LinkerMapParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void Parse(string linkMapText)

var lowerFunc = funcName.ToLower();
var sym = funcObjectSplit.First().ToLower();
if (sym.Contains("alivelib") && !lowerFunc.StartsWith("_unwind") && !lowerFunc.StartsWith("_ehhandler") && !lowerFunc.StartsWith("?__"))
if (!lowerFunc.StartsWith("_") && !lowerFunc.StartsWith("?"))
{
Functions.Add(new LinkerMapFunction() { Name = funcName, Object = functionObject, Address = address });
}
Expand Down

0 comments on commit 9934f78

Please sign in to comment.