diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-06-03 15:27:43 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-06-03 16:06:23 +0200 |
commit | 34f7ed1fc76dbbcd8f2984d4304ec24ead244b43 (patch) | |
tree | 1ff4f4daa0e262a1ad243365a983ed4d7e70445e /sink.c | |
parent | f1c6a8ec2cf88cd7b857111e58fab7e72ede7d29 (diff) | |
download | fetchmail-34f7ed1fc76dbbcd8f2984d4304ec24ead244b43.tar.gz fetchmail-34f7ed1fc76dbbcd8f2984d4304ec24ead244b43.tar.bz2 fetchmail-34f7ed1fc76dbbcd8f2984d4304ec24ead244b43.zip |
Fix some rare or minor issues found with Clang 2.7 analyzer.
Diffstat (limited to 'sink.c')
-rw-r--r-- | sink.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -649,6 +649,9 @@ int stuffline(struct query *ctl, char *buf) int n, oldphase; char *last; + if (!buf) + return -1; + /* The line may contain NUL characters. Find the last char to use * -- the real line termination is the sequence "\n\0". */ |