talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 986e6f7c5fcaa4c605de1f8f259056e9d4ffa347
parent 04456e3b73d55d596276e5b21fe5bae90cbf2084
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Sun, 28 Aug 2016 22:42:10 +0200

Fix crash on Windows when doing a LDAP search.

Diffstat:
Msrc/ldapquery.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ldapquery.c b/src/ldapquery.c @@ -639,7 +639,7 @@ static GList *ldapqry_process_single_entry( if( ber != NULL ) { ber_free( ber, 0 ); } - g_free( dnEntry ); + ldap_memfree( dnEntry ); return listReturn; }