iPhone + stringWithUTF8String + memory leaks
I am using following code in my application to read the string value from database:
objPlayer.playerName = [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 2)];
When I run the Instruments to find memory leaks it gives me NSCFString leaks at above line.
What should I do?