Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 728fc4ef authored by Josef 'Jeff' Sipek's avatar Josef 'Jeff' Sipek Committed by Eric Van Hensbergen
Browse files

9p: Correct fidpool creation failure in p9_client_create



On error, p9_idpool_create returns an ERR_PTR-encoded errno.

Signed-off-by: default avatarJosef 'Jeff' Sipek <jeffpc@josefsipek.net>
Acked-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
parent c1549497
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -154,7 +154,7 @@ struct p9_client *p9_client_create(const char *dev_name, char *options)
	spin_lock_init(&clnt->lock);
	INIT_LIST_HEAD(&clnt->fidlist);
	clnt->fidpool = p9_idpool_create();
	if (!clnt->fidpool) {
	if (IS_ERR(clnt->fidpool)) {
		err = PTR_ERR(clnt->fidpool);
		clnt->fidpool = NULL;
		goto error;