@@ -176,11 +176,11 @@ } - (void)testFastEnumeration { size_t i = 0; - OFString *first, *second; + OFString *first = nil, *second = nil; for (OFString *key in _dictionary) { OTAssertLessThan(i, 2); switch (i++) { @@ -201,11 +201,11 @@ #ifdef OF_HAVE_BLOCKS - (void)testEnumerateKeysAndObjectsUsingBlock { __block size_t i = 0; - __block OFString *first, *second; + __block OFString *first = nil, *second = nil; [_dictionary enumerateKeysAndObjectsUsingBlock: ^ (id key, id object, bool *stop) { OTAssertLessThan(i, 2);