I have found a memory leak in my application which is a ARC converted application.
Instrument shows that leak responsible library is libsystem_c.dylib
I am attaching the screen shot here..
I have searched about the issue and i found the related posts in
instruments-show-leak-in-main-m-xcode-4-3-1
obj-c-memory-leak-of-malloc-48-bytes-in-strdup-framework
Is it a bug in the iOS 5.1 framework?
Any help on this is appreciated.


EDIT:
indeed, it seems there is some king of bug in iOS SDK 5.1 strdup (or related). See this thread from the developers forum.
it would be interesting if you can dig a bit into the Elements sample (which is the one that is said to reveal the bug) and see if you are using the same kind of functionality.
Here is a stack trace at the moment of the leak:
You can get your stack trace at the moment of the leak by choosing “Show Extended Detail” (or something similar) in the Instruments View menu.
OLD ANSWER:
I suspect it is not.
In fact, what Instruments shows you as “responsible library” is the place where the actual
malloccall was effectively executed.If you look at Instruments output, the culprit call is
strdup: there cannot possibly be a leak instrdup.It is more likely that you asked the OS (directly or indirectly) to duplicate some string, but then managed incorrectly the resulting copy of the string.
Analyze the Extended Detail View which Instruments offer you, which shows the call stack at the moment the
mallocwas called. This may help if there is a direct relationship between your code and themalloccall itself. But even if the detailed view does not show such relationship, keep looking for the cause of the leak in your code.More in general, try to understand which part of your app is running when the leak is found (take into account the fact that leaks analysed at discrete times, e.g., every 10 seconds, so when you see the red bar appear, that means that the leak was produced during the last 10 seconds), and review all memory operations you do in the relevant classes.
In my experience, it is pretty normal (100% of cases) that Instruments shows some part of the SDK as “responsible” for a leak, but at a deeper analysis the wrong code is on my part.