hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/crypto/algapi.c
....@@ -456,7 +456,9 @@
456456 if (WARN(ret, "Algorithm %s is not registered", alg->cra_driver_name))
457457 return;
458458
459
- BUG_ON(refcount_read(&alg->cra_refcnt) != 1);
459
+ if (WARN_ON(refcount_read(&alg->cra_refcnt) != 1))
460
+ return;
461
+
460462 if (alg->cra_destroy)
461463 alg->cra_destroy(alg);
462464