diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-01-19 03:28:54 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-01-19 03:28:54 +0000 |
commit | 60c1d5157275adf701c7f453432d3d9273c71c80 (patch) | |
tree | b8f3997aa45e173b371b1904f66d194a656159d3 /fetchmail.c | |
parent | 025dc8b68e812f4cdb0943baf8d43d3683651490 (diff) | |
download | fetchmail-60c1d5157275adf701c7f453432d3d9273c71c80.tar.gz fetchmail-60c1d5157275adf701c7f453432d3d9273c71c80.tar.bz2 fetchmail-60c1d5157275adf701c7f453432d3d9273c71c80.zip |
Free netrc list as soon as it's no longer needed.
svn path=/branches/BRANCH_6-3/; revision=4660
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index 62ea09fc..640c9f69 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -359,6 +359,9 @@ int main(int argc, char **argv) } } + free_netrc(netrc_list); + netrc_list = 0; + /* perhaps we just want to check options? */ if (versioninfo) { |