mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-07-03 03:03:34 +00:00
3600914 no more crash on no response. allow more send/recv loops of waiting.
This commit is contained in:
@ -1270,7 +1270,7 @@ static tKFWUM_Status KfwumFinishFirmwareImage(struct ipmi_intf * intf,
|
|||||||
do
|
do
|
||||||
{
|
{
|
||||||
rsp = intf->sendrecv(intf, &req);
|
rsp = intf->sendrecv(intf, &req);
|
||||||
}while (rsp->ccode == 0xc0);
|
}while (rsp == NULL || rsp->ccode == 0xc0);
|
||||||
|
|
||||||
if (!rsp)
|
if (!rsp)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user