vote up 3 vote down star
1

So, I finished writing my first iPhone App, and I have sent it out to a group of beta testers. Everybody is happy, except for this one guy who noticed that after having run my app, another app is not starting up anymore.

Not knowing too much about memory management, I started looking at the Leaks graphs in Instruments, and noticed, that there are some leaks going on in my app.

Three questions:

  1. Are leaks always bad? The biggest leak is 15k on a total of 5,1 MB allocated memory.
  2. Will Apple refuse my app because of leaks?
  3. Is not all the memory automatically freed up as soon as my app quits? Could it be that my leaking app is harmful to other apps?

Thanks Sjakelien

flag

55% accept rate
Well, if a user noticed that your app is able to affect how another app runs afterward, then clearly some effects of your code persist after your application exits. Even if Apple doesn't notice, it sounds like your reviewers may. – David Maymudes Jul 5 at 14:20
We do not have a reproducible situation, so it's overly bold to say that Sjakelien's app affected the other one. We only know that the tester didn't notice the other app wasn't working until sometime after he ran Sjakelien's app. – Chuck Jul 5 at 16:18

4 Answers

vote up 3 vote down

Any leak that persists beyond the exit of your application is an OS bug, and hence Apple's problem.

It would be unfair to reject your app on this basis.
I don't know if that's any comfort to you.

For the record, my app provokes a leak in mediaserverd.
The leak is a tiny bit smaller in the 3.0GM.

Another incorrect usage of an API crashed mediaserverd.
Also 3.0GM. Nasty. I'd have preferred an error code, however
this could theoretically be used to work around the leak.

link|flag
1  
mediaserverd isn't very careful with its inputs. The worst I've been able to do is eat CPU and cause a buffer loop (effictively killing all audio/vibration until the user reboots the device). There's also the capability to schedule audio long after your app has closed. Encountered any other nasty crashes? – rpetrich Jul 5 at 15:55
Two crashes (1 on 2.x, 1 on 3.0), 200k leak on 2.x and 200bytes on 3.0. It's garbage. – Rhythmic Fistman Jul 5 at 16:07
vote up 4 vote down

Each app is supposed to run in its own "sandbox," and is by design not supposed to affect any other app installed on the phone. If your reviewer found a case where your app really did affect another app, that's definitely not your fault, although I'd love to know how that was accomplished ;).

My guess is, though, that your reviewer's other app broke completely independently of your app, and he/she is spuriously attributing the fault to your app. Ask him to try to reproduce the problem (uninstall both apps, install the other app, install your app). If it's reproducible, some iPhone hackers may be knocking down your door to figure out how you did it! I would bet lots of money it's not reproducible though.

link|flag
You don't have to look too far to find bugs in iPhoneOS. The "iPhone hackers" can start here: openradar.appspot.com/search?query=iphone – Rhythmic Fistman Jul 5 at 14:52
To reproduce the bug, I would say just restart the device, run your app and then check if the other one is broken (or restart and then run the other to see if it works anyway) – Dimitris Jul 16 at 9:28
vote up 1 vote down

what the other two answers say i agree with, however nobody has answered the first question ("Are leaks always bad") directly. i would say that yes they are. it's true that your program can possibly run with them for long periods of time without issue. and the OS should clean up the memory after termination (unless there's a bug in the OS, as said before). but eventually the leak will become an issue for someone at some point when they run long enough. also, even if it doesn't become an issue, it's probably a best practice to always fix memory leaks that you know about.

link|flag
vote up 1 vote down

It depends on what "memory" you are leaking. Are you using device storage space to cache something? In theory then it's possible that you've used up enough space the other app cannot start because it needs a certain amount of free space.

If we're talking physical memory, then no. When your app is dead it is dead. You could ask them to restart the device and see if they have the same issue.

link|flag

Your Answer

Get an OpenID
or

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