Remove dead code

pkcs15-cflex.c:747:3: warning: Value stored to 'key' is never read
        *key++ = 0;
         ^~~~~


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@5143 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
ludovic.rousseau 2011-02-05 20:42:50 +00:00
parent 9df8712b9e
commit 18c144603a
1 changed files with 1 additions and 1 deletions

View File

@ -744,7 +744,7 @@ cryptoflex_encode_private_key(sc_profile_t *profile, sc_card_t *card,
key += 5 * base;
*key++ = 0;
*key++ = 0;
*key++ = 0;
*key = 0;
return 0;
}