lib/config: remove early free in _get_email_from_passwd_file

This (obvious) bug was caused by cut&pasting the code from
notmuch-config.c into the library and adding on a return at the end.
This commit is contained in:
David Bremner 2021-04-24 10:44:28 -03:00
parent 27a2c2c80d
commit 5f80e106d6

View file

@ -542,7 +542,6 @@ _get_email_from_passwd_file (void *ctx)
username, hostname, domainname);
talloc_free (username);
talloc_free (email);
return email;
}