Skip to content

Commit

Permalink
Fix z/OS build error in getMemberNameMethodInfo()
Browse files Browse the repository at this point in the history
  • Loading branch information
jdmpapin committed Sep 6, 2023
1 parent 2534810 commit 628139c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runtime/compiler/env/VMJ9.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4761,7 +4761,8 @@ TR_J9VMBase::getMemberNameMethodInfo(
TR::KnownObjectTable::Index objIndex,
MemberNameMethodInfo *out)
{
*out = {};
MemberNameMethodInfo zero = {0};
*out = zero;

if (objIndex == TR::KnownObjectTable::UNKNOWN)
return false;
Expand Down

0 comments on commit 628139c

Please sign in to comment.