Index: src/OFString.m ================================================================== --- src/OFString.m +++ src/OFString.m @@ -282,16 +282,10 @@ Class c; size_t i, j; self = [super init]; - if (len > strlen(str)) { - c = isa; - [super dealloc]; - @throw [OFOutOfRangeException newWithClass: c]; - } - length = len; @try { string = [self allocMemoryWithSize: length + 1]; } @catch (OFException *e) {