mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-06 22:29:22 +00:00
trivial: Add a missing error check when creating a stream
This commit is contained in:
parent
8fc8539146
commit
afb09fa2fa
@ -119,6 +119,13 @@ fu_efivar_set_immutable(const gchar *fn, gboolean value, gboolean *value_old, GE
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
istr = g_unix_input_stream_new(fd, TRUE);
|
istr = g_unix_input_stream_new(fd, TRUE);
|
||||||
|
if (istr == NULL) {
|
||||||
|
g_set_error_literal(error,
|
||||||
|
G_IO_ERROR,
|
||||||
|
G_IO_ERROR_FAILED,
|
||||||
|
"failed to create stream");
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
return fu_efivar_set_immutable_fd(fd, value, value_old, error);
|
return fu_efivar_set_immutable_fd(fd, value, value_old, error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user