Merge pull request #6056 from DavidKorczynski/develop
Initial fuzzing integration
This commit is contained in:
commit
af7a668b90
|
@ -0,0 +1,15 @@
|
|||
#include "qSqlparser.h"
|
||||
|
||||
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size){
|
||||
char *new_str = (char *)malloc(size+1);
|
||||
if (new_str == NULL){
|
||||
return 0;
|
||||
}
|
||||
memcpy(new_str, data, size);
|
||||
new_str[size] = '\0';
|
||||
|
||||
qSqlParse(new_str);
|
||||
|
||||
free(new_str);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue