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