@@ -84,23 +84,21 @@ - init { OFList *pool_list; - if ((self = [super init])) { - objects = nil; - - pool_list = get_tls(pool_list_key); - - if (pool_list == nil) { - pool_list = [[OFList alloc] - initWithoutRetainAndRelease]; - set_tls(pool_list_key, pool_list); - } - - listobj = [pool_list append: self]; - } + self = [super init]; + + objects = nil; + pool_list = get_tls(pool_list_key); + + if (pool_list == nil) { + pool_list = [[OFList alloc] initWithoutRetainAndRelease]; + set_tls(pool_list_key, pool_list); + } + + listobj = [pool_list append: self]; return self; } - free