Skip to content

Commit

Permalink
Remove unused variable 'ofs' in Android keystore_fetch()
Browse files Browse the repository at this point in the history
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Mar 6, 2013
1 parent 8ebdbe2 commit bf2b34f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssl.c
Expand Up @@ -475,7 +475,7 @@ int keystore_fetch(const char *key, unsigned char **result)
socklen_t sl = offsetof(struct sockaddr_un, sun_path) + strlen(sa.sun_path) + 1;
unsigned char *data, *p;
unsigned char buf[3];
int len, fd, ofs;
int len, fd;
int ret = -SYSTEM_ERROR;

fd = socket(AF_UNIX, SOCK_STREAM, 0);
Expand Down

0 comments on commit bf2b34f

Please sign in to comment.