I noticed that the SimpleFTPSample that apple provides leaks memory. The Leaks Performance tool detects a leak when using the "List" sample. A leak is detected after you press the "List" button the second time. Does anyone know why? ie have a fix? I am considering using FTP in my app, but don't want to create a leaky app. Thanks.

link|improve this question

Post the code? Point out where it leaks? – TomH Sep 23 '10 at 0:49
feedback

1 Answer

up vote 0 down vote accepted

(oh old Question)
In the Statusbar under Build use "Build and Analyse" this points out a leak in line 85 of AppDelegate.m Potential leak of object allocated on line 85 and stored into initialDefaultsChanged
My solution is to release initialsDefaults after register it to Defaults on line 96

#if ! TARGET_IPHONE_SIMULATOR
    {
        NSMutableDictionary *   initialDefaultsChanged;

        initialDefaultsChanged = [initialDefaults mutableCopy];
        assert(initialDefaultsChanged != nil);

        [initialDefaultsChanged setObject:@"" forKey:@"CreateDirURLText"];
        [initialDefaultsChanged setObject:@"" forKey:@"PutURLText"];

        initialDefaults = initialDefaultsChanged;
    }
    #endif

    [[NSUserDefaults standardUserDefaults] registerDefaults:initialDefaults];
    [initialDefaults release];//add this
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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