5360 segfault using smartcard without any readers (#5361)
* Fix: corrected test for astyle. * Fix: added test for NULL readers returned by ConvertFromUnicode.
This commit is contained in:
parent
e1ef302a8d
commit
431c37f3a9
@ -493,21 +493,21 @@ static DWORD filter_device_by_name_w(wLinkedList* list, LPWSTR* mszReaders, DWOR
|
||||
{
|
||||
int res;
|
||||
DWORD rc;
|
||||
LPSTR readers;
|
||||
LPSTR readers = NULL;
|
||||
|
||||
if (LinkedList_Count(list) < 1)
|
||||
return cchReaders;
|
||||
|
||||
res = ConvertFromUnicode(CP_UTF8, 0, *mszReaders, (int)cchReaders, &readers, 0, NULL,
|
||||
NULL);
|
||||
NULL);
|
||||
|
||||
if ((res < 0) || ((DWORD)res != cchReaders))
|
||||
/* When res==0, readers may have been set to NULL by ConvertFromUnicode */
|
||||
if ((res < 0) || ((DWORD)res != cchReaders) || (readers == 0))
|
||||
return 0;
|
||||
|
||||
free(*mszReaders);
|
||||
*mszReaders = NULL;
|
||||
rc = filter_device_by_name_a(list, &readers, cchReaders);
|
||||
|
||||
res = ConvertToUnicode(CP_UTF8, 0, readers, (int)rc, mszReaders, 0);
|
||||
|
||||
if ((res < 0) || ((DWORD)res != rc))
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
ASTYLE=$(which astyle)
|
||||
|
||||
if [ ! -x $ASTYLE ]; then
|
||||
if [ ! -x "$ASTYLE" ]; then
|
||||
echo "No astyle found in path, please install."
|
||||
exit 1
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user