[DragonFlyBSD - Bug #2991] (Closed) sys/dev/netif/age/if_age.c:628]: (style) Suspicious condition

bugtracker-admin at leaf.dragonflybsd.org bugtracker-admin at leaf.dragonflybsd.org
Tue Mar 28 12:55:41 PDT 2017


Issue #2991 has been updated by dillon.

Status changed from New to Closed

fix committed to master


----------------------------------------
Bug #2991: sys/dev/netif/age/if_age.c:628]: (style) Suspicious condition
http://bugs.dragonflybsd.org/issues/2991#change-13096

* Author: dcb
* Status: Closed
* Priority: Normal
* Assignee: 
* Category: 
* Target version: 
----------------------------------------
sys/dev/netif/age/if_age.c:628]: (style) Suspicious condition (assignment + comparison); Clarify expression with parentheses.

Source code is

    if ((error = age_dma_alloc(sc) != 0))
        goto fail;

Maybe better code

    if ((error = age_dma_alloc(sc)) != 0)
        goto fail;




-- 
You have received this notification because you have either subscribed to it, or are involved in it.
To change your notification preferences, please click here: http://bugs.dragonflybsd.org/my/account



More information about the Bugs mailing list