diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-11 23:40:02 -0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-11 23:40:02 -0200 |
commit | 42a0ddcd484d0470d4c1b114ffb6be1d35f8ac6b (patch) | |
tree | c1a93de1487a69c2fc0ee165b882bf4c896e0e72 /crypto/crypto_user.c | |
parent | 53e3ccfd153f0e71352b34a930e231ac1ae07d5e (diff) | |
parent | 3acc84739dd5d746840f881ad4d60bd2a428f1dd (diff) | |
download | lwn-42a0ddcd484d0470d4c1b114ffb6be1d35f8ac6b.tar.gz lwn-42a0ddcd484d0470d4c1b114ffb6be1d35f8ac6b.zip |
Merge git://github.com/herbertx/crypto
* git://github.com/herbertx/crypto:
crypto: algapi - Fix build problem with NET disabled
crypto: user - Fix rwsem leak in crypto_user
Diffstat (limited to 'crypto/crypto_user.c')
-rw-r--r-- | crypto/crypto_user.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/crypto_user.c b/crypto/crypto_user.c index 2abca780312d..0605a2bbba75 100644 --- a/crypto/crypto_user.c +++ b/crypto/crypto_user.c @@ -44,9 +44,6 @@ static struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact) down_read(&crypto_alg_sem); - if (list_empty(&crypto_alg_list)) - return NULL; - list_for_each_entry(q, &crypto_alg_list, cra_list) { int match = 0; |