Check that code:
if (something bad)
return;
It is good you are doing the early returns; it is bad you are failing silently. Return an error code.
Check that code:
if (something bad)
return;
It is good you are doing the early returns; it is bad you are failing silently. Return an error code.