Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Do not clean tpHandle in ClassBase.tp_clear - it might be used in tp_…
…dealloc

fixes #1566
  • Loading branch information
lostmsu committed Sep 23, 2021
commit 2dd5ee6081282133569b9aa9a5bb128fdced56b8
1 change: 0 additions & 1 deletion src/runtime/classbase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,6 @@ public static int tp_clear(IntPtr ob)
return baseClearResult;
}
}
if (self is not null) self.tpHandle = IntPtr.Zero;
return 0;
}

Expand Down