mirror of
https://github.com/armbian/build.git
synced 2025-08-14 15:16:58 +02:00
* Recycling of megous v5.16.4 patches The patches were sorted as far as possible. Some patches are renamed according to their place of application. The length of the patch name has been changed to improve readability using the `git format-patch --filename-max-length=75` method. The folder containing the patches will have the name `patches.name` and the corresponding file `series.name` for the convenience of processing and moving them upstream. But the control file remains `series.conf`. Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * Add a series of armbian patches for 5.16 Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * Remove patches whose fixes are already in the kernel Signed-off-by: The-going <48602507+The-going@users.noreply.github.com>
28 lines
837 B
Diff
28 lines
837 B
Diff
From 9489a251db5fddd31d0a1f3ea33c10b1988c3286 Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Sun, 5 Apr 2020 21:16:40 -0500
|
|
Subject: [PATCH 129/446] media: cedrus: Fix missing cleanup in error path
|
|
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
drivers/staging/media/sunxi/cedrus/cedrus.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/drivers/staging/media/sunxi/cedrus/cedrus.c b/drivers/staging/media/sunxi/cedrus/cedrus.c
|
|
index c76fc97d9..72cf08f98 100644
|
|
--- a/drivers/staging/media/sunxi/cedrus/cedrus.c
|
|
+++ b/drivers/staging/media/sunxi/cedrus/cedrus.c
|
|
@@ -354,7 +354,9 @@ static int cedrus_open(struct file *file)
|
|
|
|
err_ctrls:
|
|
v4l2_ctrl_handler_free(&ctx->hdl);
|
|
+ kfree(ctx->ctrls);
|
|
err_free:
|
|
+ v4l2_fh_exit(&ctx->fh);
|
|
kfree(ctx);
|
|
mutex_unlock(&dev->dev_mutex);
|
|
|
|
--
|
|
2.31.1
|
|
|