You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
320 B
C
16 lines
320 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "iec61850_server.h"
|
|
#include "hal_thread.h"
|
|
|
|
int LLVMFuzzerTestOneInput(const char *data, size_t size) {
|
|
int out;
|
|
MmsValue* value = NULL;
|
|
value = MmsValue_decodeMmsData(data, 0, size, &out);
|
|
if (value != NULL) {
|
|
free(value);
|
|
}
|
|
return 0;
|
|
}
|