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
604452f1
...
604452f107cafe97e3a7b2d0b5147ad128219f89
authored
2002-08-01 14:06:14 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(read_rc): Bugfix. linebuf must be freed
no matter was the string accepted or not.
1 parent
50e90b94
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/mu_argp.c
mailbox/mu_argp.c
View file @
604452f
...
...
@@ -624,11 +624,11 @@ read_rc (const char *progname, const char *name, const char *capa[],
x_argv
[
x_argc
++
]
=
n_argv
[
i
];
free
(
n_argv
);
}
if
(
linebuf
)
free
(
linebuf
);
linebuf
=
NULL
;
}
}
fclose
(
fp
);
free
(
rcfile
);
...
...
Please
register
or
sign in
to post a comment