1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Fixed field dependency on methodRefs

This commit is contained in:
Brian Fiete 2021-12-28 06:03:52 -05:00
parent e81c0d6dfa
commit 98eb8f5840
2 changed files with 6 additions and 14 deletions

View file

@ -2664,6 +2664,8 @@ int BfArrayType::GetLengthBitCount()
int BfMethodRefType::GetCaptureDataCount()
{
if (mMethodRef == NULL)
return 0;
return (int)mDataToParamIdx.size();
}