Skip to content

Commit

Permalink
nil-check VMProcess when shutting down, will be nil on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
daniels220 committed Nov 30, 2023
1 parent 06ec31d commit b17bfde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repository/OSSubprocess/OSSVMProcess.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ OSSVMProcess class >> new [

{ #category : #'system startup' }
OSSVMProcess class >> shutDown: quitting [
self vmProcess shutDown: quitting
self vmProcess ifNotNil: [:a | a shutDown: quitting]
]

{ #category : #'system startup' }
Expand Down

0 comments on commit b17bfde

Please sign in to comment.