mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 15:18:15 +00:00
KEYS: fix error return code in big_key_instantiate()
Fix to return a negative error code from the error handling case instead of 0, as done elsewhere in this function. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
parent
034faeb9ef
commit
d2b8697024
1 changed files with 3 additions and 1 deletions
|
@ -71,8 +71,10 @@ int big_key_instantiate(struct key *key, struct key_preparsed_payload *prep)
|
||||||
* TODO: Encrypt the stored data with a temporary key.
|
* TODO: Encrypt the stored data with a temporary key.
|
||||||
*/
|
*/
|
||||||
file = shmem_file_setup("", datalen, 0);
|
file = shmem_file_setup("", datalen, 0);
|
||||||
if (IS_ERR(file))
|
if (IS_ERR(file)) {
|
||||||
|
ret = PTR_ERR(file);
|
||||||
goto err_quota;
|
goto err_quota;
|
||||||
|
}
|
||||||
|
|
||||||
written = kernel_write(file, prep->data, prep->datalen, 0);
|
written = kernel_write(file, prep->data, prep->datalen, 0);
|
||||||
if (written != datalen) {
|
if (written != datalen) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue