Is this good or bad practice?
if (!theConnection && !receivedData) {
// release the connection, and the data object
[theConnection release];
// receivedData is declared as a method instance elsewhere
[receivedData release];
}