Get rid of warnings.

This commit is contained in:
Jonathan Schleifer 2011-03-30 13:26:12 +02:00
parent edb38970db
commit b05300b119

View file

@ -158,10 +158,10 @@ extern uint32_t arc4random_uniform(uint32_t);
{ {
size_t i; size_t i;
uint8_t *clientKey, *serverKey, *clientSignature; uint8_t *clientKey, *serverKey, *clientSignature;
intmax_t iterCount; intmax_t iterCount = 0;
OFHash *hash; OFHash *hash;
OFDataArray *ret, *authMessage, *tmpArray, *salt, *saltedPassword; OFDataArray *ret, *authMessage, *tmpArray, *salt = nil, *saltedPassword;
OFString *tmpString, *sNonce; OFString *tmpString, *sNonce = nil;
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
OFEnumerator *enumerator; OFEnumerator *enumerator;
OFString *comp; OFString *comp;