comparison fuzzer-preauth.c @ 1357:08f4fa4dc6a0 fuzz

closer to working
author Matt Johnston <matt@ucc.asn.au>
date Sat, 20 May 2017 13:23:16 +0800
parents 3677a510f545
children 6b89eb92f872
comparison
equal deleted inserted replaced
1356:3677a510f545 1357:08f4fa4dc6a0
22 wrapfd_add(fakesock, fuzz.input, PLAIN); 22 wrapfd_add(fakesock, fuzz.input, PLAIN);
23 23
24 if (setjmp(fuzz.jmp) == 0) { 24 if (setjmp(fuzz.jmp) == 0) {
25 svr_session(fakesock, fakesock); 25 svr_session(fakesock, fakesock);
26 } else { 26 } else {
27 TRACE(("dropbear_exit longjmped"))
27 // dropbear_exit jumped here 28 // dropbear_exit jumped here
28 } 29 }
29 30
30 return 0; 31 return 0;
31 } 32 }