Skip to content

Commit

Permalink
fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
theXappy committed Oct 24, 2024
1 parent 9a528aa commit 18d810f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ScubaDiver/MsvcDiver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -748,14 +748,14 @@ protected override string MakeObjectResponse(ScubaDiverMessage arg)
if (_freezer.IsFrozen(objAddr))
{
Logger.Debug($"[MsvcDiver][MakeObjectResponse] Object at 0x{objAddr:X16} is already frozen.");
ObjectDump od = new ObjectDump()
ObjectDump alreadyFrozenObjDump = new ObjectDump()
{
Type = typeName,
RetrivalAddress = objAddr,
PinnedAddress = objAddr,
HashCode = 0x0bad0bad
};
return JsonConvert.SerializeObject(od);
return JsonConvert.SerializeObject(alreadyFrozenObjDump);
}

// TODO: Wrong for x86
Expand Down

0 comments on commit 18d810f

Please sign in to comment.