Plug one-time LDAPMessage leak

This commit is contained in:
Hallvard Furuseth 2010-12-20 12:39:48 +00:00
parent 720aa4b77e
commit 77a7ef0adf

View File

@ -75,7 +75,7 @@ main( int argc, char *argv[] )
char *matcheddn = NULL, *text = NULL, **refs = NULL;
LDAPControl **ctrls = NULL;
int id, code;
LDAPMessage *res;
LDAPMessage *res = NULL;
tool_init( TOOL_EXOP );
prog = lutil_progname( "ldapexop", argc, argv );
@ -348,6 +348,8 @@ main( int argc, char *argv[] )
skip:
/* disconnect from server */
if ( res )
ldap_msgfree( res );
tool_unbind( ld );
tool_destroy();