Skip to content

Commit d7cf3e0

Browse files
committed
Fix CurrentThread.teb_base being a property and not a fixedproperty
1 parent 54be297 commit d7cf3e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

windows/winobject/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ def tid(self):
584584
"""
585585
return winproxy.GetCurrentThreadId()
586586

587-
@utils.fixedproperty
587+
@property #It's not a fixedproperty because executing thread might change
588588
def teb_base(self):
589589
get_teb_base_code = self.get_teb_code_by_bitness[self.owner.bitness]
590590
return self.owner.execute(get_teb_base_code)

0 commit comments

Comments
 (0)