mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
[NET]: Change some "if (x) BUG();" to "BUG_ON(x);"
This changes some simple "if (x) BUG();" statements to "BUG_ON(x);" Signed-off-by: Kris Katterjohn <kjak@users.sourceforge.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4bba392592
commit
09a626600b
11 changed files with 21 additions and 40 deletions
|
@ -1250,8 +1250,7 @@ static int sctp_cmd_interpreter(sctp_event_t event_type,
|
|||
case SCTP_CMD_TIMER_START:
|
||||
timer = &asoc->timers[cmd->obj.to];
|
||||
timeout = asoc->timeouts[cmd->obj.to];
|
||||
if (!timeout)
|
||||
BUG();
|
||||
BUG_ON(!timeout);
|
||||
|
||||
timer->expires = jiffies + timeout;
|
||||
sctp_association_hold(asoc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue