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 1
1
-*- coding: utf-8 -*-
2
2
Changes with Apache 2.5.1
3
3
4
+ *) core: adding defines to allow interworking with honggfuzz without
5
+ further patches. [Stefan Eissing, Robert Swiecki]
6
+
4
7
*) mod_slotmem_shm: Add generation number to shm filename to fix races
5
8
with graceful restarts. PR 62044.
6
9
Original file line number Diff line number Diff line change @@ -484,7 +484,11 @@ static void usage(process_rec *process)
484
484
destroy_and_exit_process (process , 1 );
485
485
}
486
486
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
488
492
{
489
493
char c ;
490
494
int showcompile = 0 , showdirectives = 0 ;
You can’t perform that action at this time.
0 commit comments