can any one please tell me whats causing the memory leak.

Data_Parser is an NSObject class. This class parses xml file and the values are stored in a NSMutableArray tList.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’re allocating a mutable array in line 46 and assigning it to
ar:and then in line 48 you’re assigning something else to
ar. That loses the original array you allocated, which you never use or release. (The code doesn’t leak if theforloop doesn’t run due to en empty parser list, but the analyzer is showing you where it will.)