Skip to content

Commit 784a765

Browse files
committed
Enhance: systemic disposal of struct booth config
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
1 parent f1b1390 commit 784a765

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

src/config.c

+10-2
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ int read_config(struct booth_config **conf_pptr,
537537
struct ticket_config *current_tk = NULL;
538538

539539
assert(conf_pptr != NULL);
540-
free(*conf_pptr);
540+
config_free(*conf_pptr);
541541

542542
fp = fopen(path, "r");
543543
if (!fp) {
@@ -901,11 +901,19 @@ int read_config(struct booth_config **conf_pptr,
901901
log_error("%s in config file line %d",
902902
error, lineno);
903903

904-
free(*conf_pptr);
904+
config_free(*conf_pptr);
905905
*conf_pptr = NULL;
906906
return -1;
907907
}
908908

909+
void config_free(struct booth_config *conf_ptr)
910+
{
911+
if (conf_ptr != NULL) {
912+
free(conf_ptr->ticket);
913+
}
914+
free(conf_ptr);
915+
}
916+
909917
int check_config(struct booth_config *conf_ptr, int type)
910918
{
911919
struct passwd *pw;

src/config.h

+10
Original file line numberDiff line numberDiff line change
@@ -346,12 +346,22 @@ struct booth_config {
346346
* @param[in] type role currently being acted as
347347
*
348348
* @return 0 or negative value (-1 or -errno) on error
349+
*
350+
* @note To eventually dispose the associated memory, use #config_free.
349351
*/
350352
int read_config(struct booth_config **conf_pptr,
351353
const booth_transport_table_t *transport,
352354
const struct ticket_handler *ticket_handler,
353355
const char *path, int type);
354356

357+
/**
358+
* @internal
359+
* Memory disposal for the config object
360+
*
361+
* @param[inout] conf_ptr config object to free
362+
*/
363+
void config_free(struct booth_config *conf_ptr);
364+
355365
/**
356366
* @internal
357367
* Check booth configuration

src/main.c

+2
Original file line numberDiff line numberDiff line change
@@ -1640,6 +1640,8 @@ int main(int argc, char *argv[], char *envp[])
16401640
}
16411641

16421642
out:
1643+
config_free(booth_conf);
1644+
16431645
#ifdef LOGGING_LIBQB
16441646
qb_log_fini();
16451647
#endif

0 commit comments

Comments
 (0)