comparison svr-session.c @ 1559:92c93b4a3646 fuzz

Fix to be able to compile normal(ish) binaries with --enable-fuzz
author Matt Johnston <matt@ucc.asn.au>
date Wed, 28 Feb 2018 22:02:12 +0800
parents 2f64cb3d3007
children 76189c9ffea2
comparison
equal deleted inserted replaced
1558:2f64cb3d3007 1559:92c93b4a3646
184 /* must be after we've done with username etc */ 184 /* must be after we've done with username etc */
185 session_cleanup(); 185 session_cleanup();
186 } 186 }
187 187
188 #if DROPBEAR_FUZZ 188 #if DROPBEAR_FUZZ
189 // longjmp before cleaning up svr_opts 189 /* longjmp before cleaning up svr_opts */
190 if (fuzz.do_jmp) { 190 if (fuzz.do_jmp) {
191 longjmp(fuzz.jmp, 1); 191 longjmp(fuzz.jmp, 1);
192 } 192 }
193 #endif 193 #endif
194 194