Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/SOS/Strike/eeheap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ size_t AlignLarge(size_t nbytes)
size_t GetNumComponents(TADDR obj)
{
// The number of components is always the second pointer in the object.
DWORD Value = NULL;
DWORD Value = 0;
HRESULT hr = MOVE(Value, obj + sizeof(size_t));

// If we fail to read out the number of components, let's assume 0 so we don't try to
Expand Down