Hello All,
I'm struggling with a memory leak of sqlite3. I have the following line in my code
score.division = [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectStmt, 9)];
and it works fine. But when i look at memory leak instrument, i noticed a memory leak so after struggling a bit, i noticed if this statement is not there that memory leak is gone. But I can't possibly think of a reason why this cause a leak. Can someone please help ?
Thanks.