CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2015/10/20 03:57:23
Modified files:
security/pcsc-lite: Makefile
Added files:
security/pcsc-lite/patches: patch-src_pcscdaemon_c
patch-src_tokenparser_l
Log message:
Bugfixes from upstream:
pcscd: do not write to a closed file handle
In case of receiving a signal to terminate after init has been
completed, at_exit() is called and tries to write to a closed pipe.
This patch simply set pipe to -1 in order to invalidate it after
closing. Pipe value checks are already present in the code.
(upstream git commit 79410aac02a370d6d92106c015f01ec1491d31ac)
tokenparser.l: config.h is a local file
Use "config.h" instead of <config.h> so that the config.h is found
in the local source directory.
(upstream git commit 1f37c57feb81e8d263c696a845c4d054bdc11d0c)