Your code says: unsigned int k. So k isn't -68, it's unsigned. This makes k a very big number, based around a 4 byte int, it would be 4294967210. This is obviously quite a lot more than 0, so it's going to take your for loop a while to get that high, although it would terminate eventually.
The reason you think that it's -86, is that when you print it out with a function like NSLog, it has no direct knowledge about the arguments passed in, it determines how to treat the arguments, based around the format string, supplied as the first argument.
You're calling:
This:
NSLog(@"%d",k);
This tells NSLog to treat the argument as a signed int (%d). You should be doing this:
NSLog(@"%u",k);
So that NSLog treats the argument as the type that it is: unsigned (%u). See the NSLog documentation.
As it stands, I'd expect your buffer to overrun, trashing memory as the loop runs and your application to crash.
After reflecting, I believe @FreeAsInBeer is correct and you don't want to iterate through the for loop in this situation and you could probably fix this by using signed ints. However, It seems to me like you would be better off, checking len > sizeof(MSG_INFO) and if this isn't the case handling it differently. Most situations I can think of, I wouldn't want to perform any processing after the for loop, if I'd failed to read sufficient information for a message...
unsigned int k, k isn't -68, it's unsigned, it may well print off like that if you pass it to a function that doesn't know the difference, but really k is a large number... I'd expect your buffer to overrun, trashing memory as the loop runs / your application to crash. This:NSLog(@"%d",k);Should probably be:NSLog(@"%u",k);so you know k's real value btw... – forsvarir May 18 '11 at 13:03