[SSSD] [PATCH] IFP: Suppress warning from static analyzer

Pavel Březina pbrezina at redhat.com
Wed Sep 23 19:00:04 UTC 2015


On 09/23/2015 01:29 PM, Lukas Slebodnik wrote:
> ehlo,
>
> simple patch is attached.
>
> LS

> -    if (errno != 0) {
> -        ret = errno;
> +    ret = errno;
> +    if (ret != 0) {
>          goto done;
>      }

Hi,
if we are checking ret, it may be nicer to test against EOK since that 
is what we usually do with this name.



More information about the sssd-devel mailing list