diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-22 17:25:00 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-22 17:25:00 +0000 |
commit | 36bc0ab5bf2bfd56fb7e25dfbae194703b60304e (patch) | |
tree | f4a6706527b9b0d85f7600c9801f6dc865b57a90 /rcfile_y.y | |
parent | 457c1fe4e4f1f233a590cf38b779ca0fdcc6b18d (diff) | |
download | fetchmail-36bc0ab5bf2bfd56fb7e25dfbae194703b60304e.tar.gz fetchmail-36bc0ab5bf2bfd56fb7e25dfbae194703b60304e.tar.bz2 fetchmail-36bc0ab5bf2bfd56fb7e25dfbae194703b60304e.zip |
Various bug fixes.
svn path=/trunk/; revision=1792
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -436,6 +436,8 @@ struct query *init; /* pointer to block containing initial values */ /* initialize it */ if (init) memcpy(node, init, sizeof(struct query)); + else + memset(node, '\0', sizeof(struct query)); /* append to end of list */ if (hosttail != (struct query *) 0) |