Move return statement into the conditional, where it belongs.

main
theraven 15 years ago
parent e8583bf4ae
commit 52fb301a45

@ -301,9 +301,9 @@ id objc_retainAutoreleasedReturnValue(id obj)
if (obj == tls->returnRetained)
{
tls->returnRetained = NULL;
}
return obj;
}
}
return objc_retain(obj);
}

Loading…
Cancel
Save