Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
b2c6a5fc
...
b2c6a5fcbbf62673b2cc03a2a430fd8fdf0d8377
authored
2008-02-26 13:38:20 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_parse_config): Fix memory leak.
1 parent
d735c7fa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/cfg_driver.c
mailbox/cfg_driver.c
View file @
b2c6a5f
...
...
@@ -632,10 +632,10 @@ mu_parse_config (const char *file, const char *progname,
{
rc
=
mu_get_config
(
full_name
,
progname
,
progparam
,
flags
,
target_ptr
);
free
(
full_name
);
}
else
rc
=
ENOENT
;
free
(
full_name
);
}
else
rc
=
ENOMEM
;
...
...
Please
register
or
sign in
to post a comment