1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

scd: Replace all assert macros by the log_assert macro.

Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
Werner Koch 2021-03-31 19:16:05 +02:00
parent 6ca5407151
commit 1c16878efd
No known key found for this signature in database
GPG key ID: E3FDFF218E45B72B
9 changed files with 35 additions and 44 deletions

View file

@ -78,7 +78,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
@ -3189,7 +3188,7 @@ ccid_transceive (ccid_driver_t handle,
apdu = apdu_buf;
apdulen = apdu_buflen;
assert (apdulen);
log_assert (apdulen);
/* Construct an I-Block. */
tpdu = msg + hdrlen;