mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
libcacard: remove useless initializers
libcacard has many functions which initializes local variables at declaration time, which are always assigned some values later (often right after declaration). Clean up these initializers. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
116d554601
commit
1687a089f1
6 changed files with 21 additions and 22 deletions
|
@ -131,8 +131,8 @@ static void *
|
|||
event_thread(void *arg)
|
||||
{
|
||||
unsigned char atr[MAX_ATR_LEN];
|
||||
int atr_len = MAX_ATR_LEN;
|
||||
VEvent *event = NULL;
|
||||
int atr_len;
|
||||
VEvent *event;
|
||||
unsigned int reader_id;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue