Line | Count | Source |
1 | /* Copyright (c) Dovecot authors, see top-level COPYING file */ | |
2 | ||
3 | #include "lib.h" | |
4 | #include "fuzzer.h" | |
5 | #include "var-expand.h" | |
6 | ||
7 | 4.91k | FUZZ_BEGIN_STR(const char *input) |
8 | 4.91k | { |
9 | 4.91k | struct var_expand_program *program = NULL; |
10 | 4.91k | const char *error ATTR_UNUSED; |
11 | 4.91k | if (var_expand_program_create(input, &program, &error) == 0) |
12 | 334 | var_expand_program_free(&program); |
13 | 4.91k | } |
14 | 4.91k | FUZZ_END |