mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 17:49:22 -04:00
padlock(4): fix instapanics with geli authentication
cryptodev_process implementations are supposed to return 0 PR: 247986 Submitted by: jhb MFC after: 1 week
This commit is contained in:
parent
35f8045f55
commit
dbc973ca7a
1 changed files with 1 additions and 1 deletions
|
|
@ -275,7 +275,7 @@ out:
|
|||
#endif
|
||||
crp->crp_etype = error;
|
||||
crypto_done(crp);
|
||||
return (error);
|
||||
return (0);
|
||||
}
|
||||
|
||||
static device_method_t padlock_methods[] = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue