Authored by Thomas Rasch

o Fixed some Clang issues

... ... @@ -44,7 +44,7 @@
- (id)initWithTileSetURL:(NSURL *)tileSetURL
{
if ( ! [super init])
if ( ! (self = [super init]))
return nil;
tileProjection = [[RMFractalTileProjection alloc] initFromProjection:[self projection]
... ...
... ... @@ -214,6 +214,8 @@
tileImage = UIGraphicsGetImageFromCurrentImageContext();
CFRelease(color);
UIGraphicsEndImageContext();
}
... ...