Skip to content

Commit

Permalink
Merge pull request #17 from dvkch/patch-1
Browse files Browse the repository at this point in the history
Fix missing return in configuration file parsing
  • Loading branch information
roleoroleo authored Nov 11, 2024
2 parents a8b86d1 + 2e276f6 commit 01bb2e8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,7 @@ int process_conf_file(char *file)
service_ctx.ifs = (char *) malloc(strlen(DEFAULT_IFS) + 1);
strcpy(service_ctx.ifs, DEFAULT_IFS);
}
return 0;
}

void free_conf_file()
Expand Down

0 comments on commit 01bb2e8

Please sign in to comment.