Skip to content
Commit 0fef8f20 authored by Paul Gortmaker's avatar Paul Gortmaker
Browse files

tipc: refactor accept() code for improved readability



In TIPC's accept() routine, there is a large block of code relating
to initialization of a new socket, all within an if condition checking
if the allocation succeeded.

Here, we simply flip the check of the if, so that the main execution
path stays at the same indentation level, which improves readability.
If the allocation fails, we jump to an already existing exit label.

Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent 258f8667
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment