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
Fix EnumMemberRefs always returning NULL
  • Loading branch information
tmds committed Jun 28, 2021
commit 1860d4422fa1911a8871bce577c9b843ce2c3213
2 changes: 1 addition & 1 deletion src/coreclr/md/compiler/import.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ STDMETHODIMP RegMeta::EnumMemberRefs( // S_OK, S_FALSE, or error.

// set the output parameter
*ppmdEnum = pEnum;
*ppmdEnum = 0;
pEnum = NULL;
}

// fill the output token buffer
Expand Down