wineopenxr: Don't break on recursive struct definition.

CW-Bug-Id: #23689
This commit is contained in:
Paul Gofman 2024-04-19 14:40:19 -06:00 committed by Arkadiusz Hiler
parent 9a1038aa53
commit cfd8077872

View File

@ -1750,6 +1750,8 @@ class XrStruct(Sequence):
return True
for m in self.members:
if m.type == self.name:
continue
if m.needs_conversion():
return True
return False