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

Commit 10992435 authored by Wei Yongjun's avatar Wei Yongjun Committed by Linus Torvalds
Browse files

drivers/message/i2o/driver.c: add missing destroy_workqueue() on error in i2o_driver_register()



Add the missing destroy_workqueue() before return from
i2o_driver_register() in the error handling case.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ab767865
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
@@ -105,7 +105,8 @@ int i2o_driver_register(struct i2o_driver *drv)
			osm_err("too many drivers registered, increase "
				"max_drivers\n");
			spin_unlock_irqrestore(&i2o_drivers_lock, flags);
			return -EFAULT;
			rc = -EFAULT;
			goto out;
		}

	drv->context = i;
@@ -124,12 +125,15 @@ int i2o_driver_register(struct i2o_driver *drv)
	}

	rc = driver_register(&drv->driver);
	if (rc) {
		if (drv->event) {
	if (rc)
		goto out;

	return 0;
out:
	if (drv->event_queue) {
		destroy_workqueue(drv->event_queue);
		drv->event_queue = NULL;
	}
	}

	return rc;
};