diff options
author | Stef Walter <stef@thewalter.net> | 2014-01-13 17:58:20 +0100 |
---|---|---|
committer | Stef Walter <stef@thewalter.net> | 2014-01-13 18:11:33 +0100 |
commit | 6bc661e907f5382dbd9a76fb47a3b554c2ea0028 (patch) | |
tree | 572ed899b41a221e43cf96b672e941ec51d72315 /common/tests | |
parent | 8d5bff64a7050e983c688bb5612bf4046fe96393 (diff) |
attrs: Allow NULL attribute to be passed to p11_attr_hash()
This allows simpler lookups.
https://bugs.freedesktop.org/show_bug.cgi?id=73558
Diffstat (limited to 'common/tests')
-rw-r--r-- | common/tests/test-attrs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/tests/test-attrs.c b/common/tests/test-attrs.c index 6087191..79895e2 100644 --- a/common/tests/test-attrs.c +++ b/common/tests/test-attrs.c @@ -454,6 +454,9 @@ test_hash (void) assert (p11_attr_hash (&overflow) != hash); assert (p11_attr_hash (&null) != hash); assert (p11_attr_hash (&content) != hash); + + hash = p11_attr_hash (NULL); + assert (hash == 0); } static void |