Grzegorz Adam Hankiewicz

Fixes dictionary memory leak. Refs #263.

A dictionary is allocated and never released. Problem was
introduced in commit:66003748.
... ... @@ -1214,6 +1214,7 @@ static NSOperationQueue *sharedQueue = nil;
CFReadStreamSetProperty((CFReadStreamRef)[self readStream],
kCFStreamPropertySSLSettings,
(CFTypeRef)sslProperties);
[sslProperties release];
}
// Tell CFNetwork to use a client certificate
... ...