diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-07-25 13:04:43 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-07-25 13:04:43 +0000 |
commit | 01abcfe2305f3b7a367acbd394e615e6051e5c6b (patch) | |
tree | 0a1be253edb4c8e876a26514cd4a59e2618ee759 /fetchmail.c | |
parent | e9328076d7de5ce942d879b5fdd5790ae7371cc9 (diff) | |
download | fetchmail-01abcfe2305f3b7a367acbd394e615e6051e5c6b.tar.gz fetchmail-01abcfe2305f3b7a367acbd394e615e6051e5c6b.tar.bz2 fetchmail-01abcfe2305f3b7a367acbd394e615e6051e5c6b.zip |
Avoid a silly core-dump.
svn path=/trunk/; revision=2020
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index 9edbeb5e..488e95e5 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -788,6 +788,7 @@ static int load_params(int argc, char **argv, int optind) ctl->server.via = ctl->server.pollname = xstrdup(argv[optind]); ctl->active = TRUE; + ctl->server.lead_server = (struct hostdata *)NULL; } } |