File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11 -*- coding: utf-8 -*-
22Changes with Apache 2.5.1
33
4+ *) core: adding defines to allow interworking with honggfuzz without
5+ further patches. [Stefan Eissing, Robert Swiecki]
6+
47 *) mod_slotmem_shm: Add generation number to shm filename to fix races
58 with graceful restarts. PR 62044.
69
Original file line number Diff line number Diff line change @@ -484,7 +484,11 @@ static void usage(process_rec *process)
484484 destroy_and_exit_process (process , 1 );
485485}
486486
487- int main (int argc , const char * const argv [])
487+ #ifdef HFND_FUZZING_ENTRY_FUNCTION
488+ HFND_FUZZING_ENTRY_FUNCTION (int argc , const char * const * argv )
489+ #else
490+ int main (int argc , const char * const * argv )
491+ #endif
488492{
489493 char c ;
490494 int showcompile = 0 , showdirectives = 0 ;
You can’t perform that action at this time.
0 commit comments