After using the analyze tool in xcode, I found the below warning in my code. (line 58 and line 61)

How can I fix the leakages in this cases?
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.
It looks like Xcode is confused over where to draw the highlight lines, the actual errors reported by clang are on line 54 and line 66.
ABAddressBookCreate() needs to be balanced by a CFRelease() when you are done using the address book:
Your ABRecordCopyValue() variables also need to be released at the end of the loop block:
C functions which return …Ref objects and contain “Create” or “Copy” generally need to be balanced by a CFRelease(). If the function contains “Get”, it is usually an inside pointer or already in an autorelease pool.