Chris Muller uploaded a new version of Files to project The Trunk:
http://source.squeak.org/trunk/Files-cmm.92.mcz==================== Summary ====================
Name: Files-cmm.92
Author: cmm
Time: 26 November 2010, 9:45:59.25 pm
UUID: 9f4a9a9e-508a-4f35-bd3f-091715f24173
Ancestors: Files-ul.91
- Fix nil-pointer on shutdown when not all stdio monikers had been accessed.
=============== Diff against Files-ul.91 ===============
Item was changed:
----- Method: StandardFileStream class>>flushAndVoidStdioFiles (in category 'class initialization') -----
flushAndVoidStdioFiles
stdioFiles ifNotNil:
[stdioFiles do:
+ [:f| f ifNotNil: [f isReadOnly ifFalse: [[f flush] on: Error do: [:ex|"care less"]]]].
- [:f| f isReadOnly ifFalse: [[f flush] on: Error do: [:ex|"care less"]]].
stdioFiles := nil]!