Re: question on common error-handling idiom

From: Jan Engelhardt
Date: Tue Nov 02 2004 - 16:44:47 EST


>There are some places that do
>
>err = -SOMEERROR;
>if (some_error)
> goto out;
>if (some_other_error)
> goto out;
>if (another_error)
> goto out;
>
>Let's see what other people think :)

err = -ESOME;
if(some_error || some_other_error || another_error) {
goto out;
}

Best.

Jan Engelhardt
--
Gesellschaft fÃr Wissenschaftliche Datenverarbeitung
Am Fassberg, 37077 GÃttingen, www.gwdg.de
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/