Commit 57828356 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

wldap32: Replace bvfreeU with plain free.

parent 81976e5c
......@@ -141,7 +141,7 @@ exit:
free( dnU );
free( attrU );
free( valueU );
bvfreeU( dataU );
free( dataU );
controlarrayfreeU( serverctrlsU );
controlarrayfreeU( clientctrlsU );
return ret;
......@@ -218,7 +218,7 @@ exit:
free( dnU );
free( attrU );
free( valueU );
bvfreeU( dataU );
free( dataU );
controlarrayfreeU( serverctrlsU );
controlarrayfreeU( clientctrlsU );
return ret;
......
......@@ -92,7 +92,7 @@ ULONG CDECL ldap_extended_operationW( LDAP *ld, WCHAR *oid, struct WLDAP32_berva
exit:
free( oidU );
bvfreeU( dataU );
free( dataU );
controlarrayfreeU( serverctrlsU );
controlarrayfreeU( clientctrlsU );
return ret;
......@@ -174,7 +174,7 @@ ULONG CDECL ldap_extended_operation_sW( LDAP *ld, WCHAR *oid, struct WLDAP32_ber
exit:
free( oidU );
bvfreeU( dataU );
free( dataU );
controlarrayfreeU( serverctrlsU );
controlarrayfreeU( clientctrlsU );
return ret;
......
......@@ -743,11 +743,6 @@ static inline struct WLDAP32_berval **bvarrayUtoW( struct berval **bv )
return ret;
}
static inline void bvfreeU( struct berval *berval )
{
free( berval );
}
static inline struct berval **bvarrayWtoU( struct WLDAP32_berval **bv )
{
struct berval **ret = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment