Changes between Initial Version and Version 1 of Ticket #6030, comment 2
- Timestamp:
- Jan 27, 2022, 3:02:32 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6030, comment 2
initial v1 1 1 {{{ 2 2 Thread 0x00002a10 (most recent call first): 3 3 File "C:\Program Files\ChimeraX 1.3\bin\lib\ctypes\__init__.py", line 510 in cast 4 4 Windows fatal exception: access violation 5 }}} 5 6 6 7 which is a ctypes casting function 7 8 9 {{{ 8 10 def cast(obj, typ): 9 11 return _cast(obj, obj, typ) 12 }}} 10 13 11 14 This is calling into some C code and it may be that C code crashed if the ctypes instance obj being passed in is bad (e.g. deleted). Or it could possibly be in garbage collection triggered at this return statement and not in the _cast C code. Can't tell.