This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: dvbdev: Initialize sbuf
Author:  Ricardo Ribalda <riba...@chromium.org>
Date:    Mon Mar 25 14:50:25 2024 +0000

Because the size passed to copy_from_user() cannot be known beforehand,
it needs to be checked during runtime with check_object_size. That makes
gcc believe that the content of sbuf can be used before init.

Fix:
./include/linux/thread_info.h:215:17: warning: ‘sbuf’ may be used uninitialized 
[-Wmaybe-uninitialized]

Signed-off-by: Ricardo Ribalda <riba...@chromium.org>
Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl>

 drivers/media/dvb-core/dvbdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

---

diff --git a/drivers/media/dvb-core/dvbdev.c b/drivers/media/dvb-core/dvbdev.c
index 733d0bc4b4cc..b43695bc51e7 100644
--- a/drivers/media/dvb-core/dvbdev.c
+++ b/drivers/media/dvb-core/dvbdev.c
@@ -956,7 +956,7 @@ int dvb_usercopy(struct file *file,
                 int (*func)(struct file *file,
                             unsigned int cmd, void *arg))
 {
-       char    sbuf[128];
+       char    sbuf[128] = {};
        void    *mbuf = NULL;
        void    *parg = NULL;
        int     err  = -EINVAL;

Reply via email to