vpcd: Initialize variables

This caused OpenSC CI failing as described in

https://github.com/OpenSC/OpenSC/issues/2390

Authored by Doug Engert <deengert@gmail.com>
This commit is contained in:
Jakub Jelen
2021-08-23 15:29:28 +02:00
parent 5a6b330b15
commit f611240fba

View File

@@ -197,6 +197,8 @@ SOCKET waitforclient(SOCKET server, long secs, long usecs)
struct pollfd pfd;
pfd.fd = server;
pfd.events = POLLIN;
pfd.revents = 0;
timeout = (secs * 1000000 + usecs / 1000);