@@ -66,12 +66,12 @@ self = [super init]; size = 4096; @try { - data = [self allocNItems: size - withSize: sizeof(OFList*)]; + data = [self allocMemoryForNItems: size + withSize: sizeof(OFList*)]; } @catch (OFException *e) { /* * We can't use [super dealloc] on OS X here. Compiler bug? * Anyway, set size to 0 so that [self dealloc] works. */ @@ -96,12 +96,12 @@ } size = (size_t)1 << hashsize; @try { - data = [self allocNItems: size - withSize: sizeof(OFList*)]; + data = [self allocMemoryForNItems: size + withSize: sizeof(OFList*)]; } @catch (OFException *e) { /* * We can't use [super dealloc] on OS X here. Compiler bug? * Anyway, set size to 0 so that [self dealloc] works. */