cmd: Remove unreachable code from netboot_nfs()
authorSylwester Nawrocki <s.nawrocki@samsung.com>
Wed, 7 Oct 2020 17:39:20 +0000 (19:39 +0200)
committerMarek Szyprowski <m.szyprowski@samsung.com>
Mon, 15 Nov 2021 10:37:12 +0000 (11:37 +0100)
commitb02a08257c9bc34185d73a5498199b80a7a657a6
tree03e55f521b9f7f83078773b35357ca55252f1627
parent5bce8943c704579904a87c2a07a6939a22d26bce
cmd: Remove unreachable code from netboot_nfs()

rcode is always 0 (CMD_RET_SUCCESS) so last bootstage_error() call is never
executed. Remove it altogether with the rcode local variable.

This supresses following SVACE warning:

* UNREACHABLE_CODE: This statement in the source code might be unreachable during program execution.
     [unreachable] unreachable at cmd/net.c:312
     [rcode != 0 is always false because at this program point the variable rcode is always equal to 0]
      rcode != 0 is always false because at this program point the variable rcode is always equal to 0
      at cmd/net.c:309

Change-Id: Idf4759839897a35fb47870bf953d35bcb5f0cad8
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
cmd/net.c