Instruments does not indicate the line that causes the leak. It indicates the line that allocated memory that later was leaked. Just from the code given (which is obviously not the entire code), I'd suspect that you're leaking serverResponse, which includes memory allocated in the line you've marked. Don't just look at the line that Instruments gives you. What class is leaking? That will give as much hint as the line.
Since you're starting to have trouble with memory management, a suggestion: when you release something, always set it to nil. This will save you a lot of headache and crashes later. In this case I'm talking about json
and response
:
[json release];
json = nil;
If you have Snow Leopard and Xcode 3.2, run the Analyzer (Cmd-Shift-A). It will find most common memory problems automatically.