summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fuzz/fuzz_options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/fuzz_options.c b/fuzz/fuzz_options.c
index 48a1847..c49d579 100644
--- a/fuzz/fuzz_options.c
+++ b/fuzz/fuzz_options.c
@@ -51,7 +51,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
}
memcpy(args, Data, Size);
- args[Size] = '\0';
+ args[Size] = '\0';
options = vcard_emul_options(args);
if (options == NULL) {
/* Invalid input -- the function should have cleaned up for itself */