Merge pull request #5875 from akallabeth/smartcard_missing_null_check
Fix #5847: Missing length check to trace smartcard buffers.
This commit is contained in:
commit
7c26d7d9ad
@ -125,6 +125,9 @@ static char* smartcard_convert_string_list(const void* in, size_t bytes, BOOL un
|
||||
|
||||
string.pv = in;
|
||||
|
||||
if (bytes < 1)
|
||||
return NULL;
|
||||
|
||||
if (unicode)
|
||||
{
|
||||
length = (bytes / 2);
|
||||
|
Loading…
Reference in New Issue
Block a user