diff options
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index 88b3a2716..827fa31f9 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -1036,10 +1036,6 @@ static void parseOptions(int argc, char **argv) { } #endif #endif - -#ifdef DEBUG_TRACE - if(trace) fclose(trace); -#endif } /* ********************************** */ @@ -4324,6 +4320,10 @@ int original_main(int argc, char **argv) { if(ndpi_info_mod) ndpi_exit_detection_module(ndpi_info_mod); if(csv_fp) fclose(csv_fp); ndpi_free(_debug_protocols); + +#ifdef DEBUG_TRACE + if(trace) fclose(trace); +#endif return 0; } |