Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed warnings and some bugs #165

Closed
wants to merge 8 commits into from

Commits on May 25, 2013

  1. fixed a ton of compiler warnings

    Frank Morgner committed May 25, 2013
    Configuration menu
    Copy the full SHA
    b9a742a View commit details
    Browse the repository at this point in the history

Commits on May 26, 2013

  1. enable compiler warnings by default

    Frank Morgner committed May 26, 2013
    Configuration menu
    Copy the full SHA
    b39563c View commit details
    Browse the repository at this point in the history

Commits on May 27, 2013

  1. made sc_apdu_t.data 'const' (which it used to be)

    fixes a lot of warnings which pass a const buffer to the APDU's data
    
    Note that a non-const data member is only required for sc_allocate_apdu
    sc_free_apdu. They are currently used with an explicit typecast.
    However, sc_allocate_apdu and sc_free_apdu both are not used once in the
    entire project. One might also simply throw both functions away.
    Frank Morgner committed May 27, 2013
    Configuration menu
    Copy the full SHA
    284c53b View commit details
    Browse the repository at this point in the history

Commits on May 28, 2013

  1. fixed wrong memory access

    Frank Morgner committed May 28, 2013
    Configuration menu
    Copy the full SHA
    d6a2bf9 View commit details
    Browse the repository at this point in the history
  2. fixed even more compiler warnings

    Frank Morgner committed May 28, 2013
    Configuration menu
    Copy the full SHA
    344b9fe View commit details
    Browse the repository at this point in the history
  3. dont call _set_fmode in mingw

    Frank Morgner committed May 28, 2013
    Configuration menu
    Copy the full SHA
    dce7174 View commit details
    Browse the repository at this point in the history
  4. Use C99 flexible array member

    The structures PIN_MODIFY_STRUCTURE and PIN_VERIFY_STRUCTURE now use a
    C99 flexible array member when available for abData field.
    
    uint8_t abData[];
    
    See http://lists.alioth.debian.org/pipermail/pcsclite-cvs-commit/2013-May/006191.html
    Frank Morgner committed May 28, 2013
    Configuration menu
    Copy the full SHA
    14e8da5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a93f025 View commit details
    Browse the repository at this point in the history