Nope, the second example is not a memory leak. In fact, that's how I deal with retain properties in my dealloc method. It's just a lot cleaner.
The only thing you have to be careful about is making sure not to write
self.foo = = [[NSObject alloc] init];
or else you'll double-retain the object and end up with a memory leak.
