fuzz_ldap_decode: do not print to stdout
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>
Thu, 9 Jan 2020 04:01:22 +0000 (17:01 +1300)
committerAndrew Bartlett <abartlet@samba.org>
Sun, 12 Jan 2020 19:50:37 +0000 (19:50 +0000)
The fuzzer doesn't care and it slows things down

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
lib/fuzzing/fuzz_ldap_decode.c

index 85e0e38983e4a01b5d1991362dff4a8066084e61..659169aca9667b167c887a2f0d1da547b2c26f79 100644 (file)
@@ -47,7 +47,6 @@ int LLVMFuzzerTestOneInput(uint8_t *buf, size_t len)
        }
 
        status = ldap_decode(asn1, samba_ldap_control_handlers(), ldap_msg);
-       printf("%s\n", nt_errstr(status));
 
 out:
        talloc_free(mem_ctx);