Levente Uzonyi uploaded a new version of WebClient-Core to project The Trunk:
http://source.squeak.org/trunk/WebClient-Core-ul.102.mcz==================== Summary ====================
Name: WebClient-Core-ul.102
Author: ul
Time: 28 July 2016, 6:11:24.053224 pm
UUID: 41aff69b-9c82-4685-a1de-9d2b7b3dd30e
Ancestors: WebClient-Core-topa.101
Send #destroy to stream instead of its socket in WebClient >> #destroy, so that SecureSocketStream can properly release its SqueakSSL instance instead of leaking it.
=============== Diff against WebClient-Core-topa.101 ===============
Item was changed:
----- Method: WebClient>>destroy (in category 'initialize') -----
destroy
"Destroys the client"
stream ifNotNil:[
+ stream destroy.
- stream socket ifNotNil:[:s| s destroy].
stream := nil.
].
!