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 26e5b94e4c
commit 98b0d5a4e0

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