Skip to content
Snippets Groups Projects
Commit a8e10078 authored by J. Bruce Fields's avatar J. Bruce Fields
Browse files

svcrpc: clean up control flow


Mainly, use the kernel standard

	err = -ERROR;
	if (something_bad)
		goto out;
	normal case;

rather than

	if (something_bad)
		err = -ERROR
	else {
		normal case;
	}

Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent 72c35376
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment