vote up 0 vote down star

in my application this method shows memory leak how do i remove leak?

-(void)getOneQuestion:(int)flashcardId categoryID:(int)categoryId
{   

    flashCardText = [[NSString alloc] init];
    flashCardAnswer=[[NSString alloc] init];
    //NSLog(@"%s %d %s", __FILE__, __LINE__, __PRETTY_FUNCTION__, __FUNCTION__);

    sqlite3 *MyDatabase;
    sqlite3_stmt *CompiledStatement=nil;
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *MyDatabasePath = [documentsDirectory stringByAppendingString:@"/flashCardDatabase.sqlite"];
    if(sqlite3_open([MyDatabasePath UTF8String],&MyDatabase) == SQLITE_OK)
    {
    	sqlite3_prepare_v2(MyDatabase, "select flashCardText,flashCardAnswer,flashCardTotalOption from flashcardquestionInfo where flashCardId=? and categoryId=?", -1, &CompiledStatement, NULL);
    	sqlite3_bind_int(CompiledStatement, 1, flashcardId);
    	sqlite3_bind_int(CompiledStatement, 2, categoryId);
    	while(sqlite3_step(CompiledStatement) == SQLITE_ROW)
    	{		
    		self.flashCardText = [NSString stringWithUTF8String:(char *)sqlite3_column_text(CompiledStatement,0)];
    		self.flashCardAnswer= [NSString stringWithUTF8String:(char *)sqlite3_column_text(CompiledStatement,1)];
    		flashCardTotalOption=[[NSNumber numberWithInt:sqlite3_column_int(CompiledStatement,2)] intValue];
    	}
    	sqlite3_reset(CompiledStatement);
    	sqlite3_finalize(CompiledStatement);
    	sqlite3_close(MyDatabase);
    }

}

this method also shows leaks.....what's wrong with this method?

-(void)getMultipleChoiceAnswer:(int)flashCardId
 {  
if(optionsList!=nil)
	[optionsList removeAllObjects];
else
	optionsList = [[NSMutableArray alloc] init];

sqlite3 *MyDatabase;
sqlite3_stmt *CompiledStatement=nil;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *MyDatabasePath = [documentsDirectory stringByAppendingString:@"/flashCardDatabase.sqlite"];
if(sqlite3_open([MyDatabasePath UTF8String],&MyDatabase) == SQLITE_OK)
{
	sqlite3_prepare_v2(MyDatabase,"select OptionText from flashCardMultipleAnswer where flashCardId=?", -1, &CompiledStatement, NULL);
	sqlite3_bind_int(CompiledStatement, 1, flashCardId);
	while(sqlite3_step(CompiledStatement) == SQLITE_ROW)
	{		
		[optionsList addObject:[NSString stringWithUTF8String:(char *)sqlite3_column_text(CompiledStatement,0)]];
	}
	sqlite3_reset(CompiledStatement);
	sqlite3_finalize(CompiledStatement);
	sqlite3_close(MyDatabase);
}

}

alt text

flag

3 Answers

vote up 4 vote down check

You don't actually use the objects you initialise at the top of the function:

flashCardText = [[NSString alloc] init];
flashCardAnswer=[[NSString alloc] init];

as you replace those objects with others later on:

self.flashCardText = [NSString stringWithUTF8String:(char *)sqlite3_column_text(CompiledStatement,0)];
self.flashCardAnswer= [NSString stringWithUTF8String:(char *)sqlite3_column_text(CompiledStatement,1)];

So those would seem to be the objects that are leaking.

link|flag
i have removed those two lines but still showing leak..i am adding a picture from instruments – Rahul Vyas Aug 24 at 10:31
i am using flashcardtext to show text on a label... but i am using flashcardanswer in same class at 3-4 times...but showing text in another class...if i remove self from flashcardanswer app. will crash – Rahul Vyas Aug 24 at 11:01
They would not leak as the property would (presumably) release the (pointless) initial values of flashCardText and flashCardAnswer. – Peter N Lewis Aug 24 at 12:47
vote up 1 vote down

[[NSString alloc] init] is completely pointless. It will return exactly equivalent of @"", except wiht more work. Its unlikely to leak, since the system will almost certainly return you a fixed constant empty string, releasing the [NSString alloc] in the init routine. But it is pointless and useless and bad code.

Other than that, your code looks OK. The second method might be considered to "leak" optionsList, simply because it creates it and it is never released, but its only created once so it should be fine.

Try running your program and doing the leak detection, then breaking in the debugger and using

po 0x4b2720 (replace with the address of the leaked objects)

to see what string is actually leaking.

Remember that Leaks can give false positives, especially if anything is cached.

link|flag
+1 for the debugging methods. – Abizern Aug 24 at 15:40
this doesn't works po 0x4b2720 (replace with the address of the leaked objects) gdb prints nothing... – Rahul Vyas Aug 25 at 8:59
vote up 1 vote down

[[NSString alloc] init]; is a useless phrase. Removing the two first lines would get rid of the leak.

EDIT: Note, too, that the two strings you pull from the database will vanish as soon as the autoreleasepool is drained, unless they are retained.

Redit: Concerning the second method; I cannot see any obvious leaks. NSCFStrings are created a lot, and often stick around. That doesn't mean they actually are leaks. From what I can see, everything in that method is either autoreleased or persistent.

link|flag
Good point about the autorelease, I hadn't picked up on that. Goes to show it's possible to focus too much on the question that was asked :-) – Graham Lee Aug 24 at 9:35
so should i create a property in header file like this @property (nonatomic, retain) NSString *flashCardText; or like this @property (nonatomic, copy) NSString *flashCardText; – Rahul Vyas Aug 24 at 10:03
@property(nonatomic,copy) is generally considered best for strings, insofar as I recall. – Williham Totland Aug 24 at 10:06
Yes, copy is best, because you could otherwise retain a mutable string that someone else is editing, in which case your object no longer has control over its state. – Graham Lee Aug 24 at 10:09
so could this line cause application crash @property (nonatomic, retain) NSString *flashCardText; – Rahul Vyas Aug 24 at 10:26
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.