KEYS: Use the variable 'key' in keyctl_describe_key()
authorDavid Howells <dhowells@redhat.com>
Mon, 28 Jun 2010 13:05:04 +0000 (14:05 +0100)
committerJames Morris <jmorris@namei.org>
Mon, 2 Aug 2010 05:34:56 +0000 (15:34 +1000)
commit94fd8405ea62bd2d4a40f3013e8e6935b6643235
tree14bff044866db418ec7f84944fc80998df851a99
parent0849e3ba53c3ef603dffa9758a73e07ed186a937
KEYS: Use the variable 'key' in keyctl_describe_key()

keyctl_describe_key() turns the key reference it gets into a usable key pointer
and assigns that to a variable called 'key', which it then ignores in favour of
recomputing the key pointer each time it needs it.  Make it use the precomputed
pointer instead.

Without this patch, gcc 4.6 reports that the variable key is set but not used:

building with gcc 4.6 I'm getting a warning message:
 CC      security/keys/keyctl.o
security/keys/keyctl.c: In function 'keyctl_describe_key':
security/keys/keyctl.c:472:14: warning: variable 'key' set but not used

Reported-by: Justin P. Mattock <justinmattock@gmail.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
security/keys/keyctl.c