Re: SELinux: Checking source code positions for the setting of error codes

From: SF Markus Elfring
Date: Mon Jan 16 2017 - 13:31:55 EST


> I have a personal style preference for
>
> rc = -ENOMEM;
> val = kalloc();
> if (!val)
> goto err;
>
> vs
>
> val = kalloc();
> if (!val) {
> rc = -ENOMEM;
> goto err;
> }
>
> because it saves 1 line

Thanks for your feedback.


> and I think the compiler does the right/same thing.

* Did you check any corresponding code generation results in more detail?

* Can misplaced variable assignments result in unwanted run time consequences
because of the previous approach for a control flow specification?

* How do you think about to achieve that error codes will only be set
after a specific software failure was detected?

Regards,
Markus