Skip to content

Commit f2058b4

Browse files
committedNov 21, 2023
Ensure that an uninitialised NetFx object does not fail in shutdown
1 parent a88b6a1 commit f2058b4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎clr_loader/netfx.py

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ class NetFx(Runtime):
1212
def __init__(
1313
self, domain: Optional[str] = None, config_file: Optional[Path] = None
1414
):
15+
self._domain = None
16+
1517
initialize()
1618
if config_file is not None:
1719
config_file_s = str(config_file).encode("utf8")

0 commit comments

Comments
 (0)
Please sign in to comment.