diff fuzzer-preauth.c @ 1385:6c92e97553f1 fuzz

Add a flag whether to longjmp, missed that last commit
author Matt Johnston <matt@ucc.asn.au>
date Thu, 01 Jun 2017 21:30:26 +0800
parents ecdd4e8ae427
children f0990c284663
line wrap: on
line diff
--- a/fuzzer-preauth.c	Tue May 30 22:50:52 2017 +0800
+++ b/fuzzer-preauth.c	Thu Jun 01 21:30:26 2017 +0800
@@ -12,6 +12,8 @@
 	static int once = 0;
 	if (!once) {
 		setup_fuzzer();
+		// XXX temporarily disable setjmp to debug asan segv
+		fuzz.do_jmp = 0;
 		once = 1;
 	}
 
@@ -40,7 +42,7 @@
 	wrapfd_add(fakesock, fuzz.input, PLAIN);
 
 	m_malloc_set_epoch(1);
-	// temporarily disable setjmp to debug asan segv
+	// XXX temporarily disable setjmp to debug asan segv
 	svr_session(fakesock, fakesock);
 	#if 0
 	if (setjmp(fuzz.jmp) == 0) {