diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2011-08-26 11:23:48 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2016-12-11 22:06:11 +0100 |
commit | 895a0128c1f7869e0d09af681d86ba019315cf7f (patch) | |
tree | b6c24dff694ee3bb5fba7849038993253be231b2 /uid_db.c | |
parent | 2486205f76a746a2619aabf641689965ae2ef00d (diff) | |
download | fetchmail-895a0128c1f7869e0d09af681d86ba019315cf7f.tar.gz fetchmail-895a0128c1f7869e0d09af681d86ba019315cf7f.tar.bz2 fetchmail-895a0128c1f7869e0d09af681d86ba019315cf7f.zip |
Fixup last patch from Thomas, return void rather than NULL.
Diffstat (limited to 'uid_db.c')
-rw-r--r-- | uid_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -458,7 +458,7 @@ struct uid_db_record *last_uid_in_db(struct uid_db *db, char const *id) /** destruction */ static void free_uid_list(struct uid_db_record *rec) { - if (!rec) return NULL; + if (!rec) return; /* Free the list of uid_db_records starting with |