Statistics
| Branch: | Revision:

root / libcacard / cac.c @ feature-archipelago

History | View | Annotate | Download (12.9 kB)

# Date Author Comment
754e72e1 12/02/2013 07:07 pm Stefan Weil

libcacard/cac: Remove unused statement (value stored is never read)

Warning from ccc-analyzer:

libcacard/cac.c:192:13: warning: Value stored to 'ret' is never read
ret = VCARD_DONE;
^ ~~~~~~~~

Here 'ret' is assigned a value inside of a switch statement and also after...

57f97834 04/24/2013 11:48 am Alon Levy

libcacard/cac: change big switch functions to single return point

Signed-off-by: Alon Levy <>
Reviewed-by: Marc-André Lureau <>

7a685896 04/24/2013 11:48 am Alon Levy

libcacard/vreader: add debugging messages for apdu

Using g_debug with log domain libcacard

Signed-off-by: Alon Levy <>
Reviewed-by: Marc-André Lureau <>

7fc7e584 10/25/2011 04:44 pm Alon Levy

libcacard/cac: fix typo in cac_delete_pki_applet_private

Signed-off-by: Alon Levy <>

7267c094 08/21/2011 07:01 am Anthony Liguori

Use glib memory allocation and free functions

qemu_malloc/qemu_free no longer exist after this commit.

Signed-off-by: Anthony Liguori <>

111a38b0 04/02/2011 03:07 am Robert Relyea

libcacard: initial commit

libcacard emulates a Common Access Card (CAC) which is a standard
for smartcards. It is used by the emulated ccid card introduced in
a following patch. Docs are available in docs/libcacard.txt

Signed-off-by: Alon Levy <>...