b1ae467ae2
Part of #5063 Closes #6681
9 lines
193 B
C
9 lines
193 B
C
#include <freerdp/assistance.h>
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size)
|
|
{
|
|
char* pass = freerdp_assistance_bin_to_hex_string((void*)Data, Size);
|
|
free(pass);
|
|
return 0;
|
|
}
|