Skip to content

Commit

Permalink
[MsvcDiver] small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
RemoteNet committed Jan 1, 2025
1 parent cab2338 commit 12e8505
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/ScubaDiver/MsvcDiver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ protected override string MakeCreateObjectResponse(ScubaDiverMessage arg)

protected override string MakeInvokeResponse(ScubaDiverMessage arg)
{
Console.WriteLine($"[{nameof(MsvcDiver)}] MakeInvokeResponse Entered (!)");
string body = arg.Body;
if (string.IsNullOrEmpty(body))
{
Expand Down
2 changes: 1 addition & 1 deletion src/ScubaDiver/MsvcOffensiveGC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ void ProcessSingleModule(UndecoratedModule module,
//}

// Logger.Debug($"[{nameof(MsvcOffensiveGC)}] Looking for {operatorNewName} in {module.Name}");
if (module.TryGetUndecoratedTypelessFunc(operatorNewName, out var methodGroup))
if (module.TryGetUndecoratedTypelessFunc(operatorNewName, out UndecoratedMethodGroup methodGroup))
{
// Logger.Debug($"[{nameof(MsvcOffensiveGC)}] FOUND {operatorNewName} in {module.Name}");
tempList.AddRange(methodGroup);
Expand Down

0 comments on commit 12e8505

Please sign in to comment.