Skip to content
Snippets Groups Projects
Commit 6df2df13 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

don't leak in case of error

parent 50a275f1
No related branches found
No related tags found
No related merge requests found
......@@ -113,13 +113,14 @@ ldap_refresh(
rc = ber_flatten2( ber, &bv, 0 );
if ( rc < 0 ) {
ld->ld_errno = LDAP_ENCODING_ERROR;
return ld->ld_errno;
rc = ld->ld_errno = LDAP_ENCODING_ERROR;
goto done;
}
rc = ldap_extended_operation( ld, LDAP_EXOP_REFRESH, &bv,
sctrls, cctrls, msgidp );
done:;
ber_free( ber, 1 );
return rc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment