Remove dead code

card-mcrd.c:1023:20: warning: Value stored to 'linep' during its initialization
      is never read
                char line[256], *linep = line;
                                 ^       ~~~~


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@5165 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
ludovic.rousseau 2011-02-05 21:41:24 +00:00
parent 81581ff6e8
commit 9d490bc273
1 changed files with 1 additions and 1 deletions

View File

@ -1020,7 +1020,7 @@ mcrd_select_file(sc_card_t * card, const sc_path_t * path, sc_file_t ** file)
SC_FUNC_CALLED(card->ctx, SC_LOG_DEBUG_VERBOSE);
{
char line[256], *linep = line;
char line[256], *linep;
size_t i;
linep = line;