mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-05 20:04:31 -05:00
Merge tag 'for-linus-5.3-2' of git://github.com/cminyard/linux-ipmi
Pull IPMI fix from Corey Minyard: "One necessary fix for an uninitialized variable in the new IPMB driver. Nothing else has come in besides things that need to wait until later" * tag 'for-linus-5.3-2' of git://github.com/cminyard/linux-ipmi: Fix uninitialized variable in ipmb_dev_int.c
This commit is contained in:
@@ -76,7 +76,7 @@ static ssize_t ipmb_read(struct file *file, char __user *buf, size_t count,
|
||||
struct ipmb_dev *ipmb_dev = to_ipmb_dev(file);
|
||||
struct ipmb_request_elem *queue_elem;
|
||||
struct ipmb_msg msg;
|
||||
ssize_t ret;
|
||||
ssize_t ret = 0;
|
||||
|
||||
memset(&msg, 0, sizeof(msg));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user