]> git.sur5r.net Git - openldap/blob - libraries/libldap/free.c
Fix large SASL reads. Use EAGAIN instead of EWOULDBLOCK (was right the
[openldap] / libraries / libldap / free.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*  Portions
7  *  Copyright (c) 1994 The Regents of the University of Michigan.
8  *  All rights reserved.
9  *
10  *  free.c - some free routines are included here to avoid having to
11  *           link in lots of extra code when not using certain features
12  */
13
14 #include "portable.h"
15
16 #include <stdio.h>
17 #include <ac/stdlib.h>
18
19 #include <ac/string.h>
20 #include <ac/time.h>
21
22 #include "ldap-int.h"
23
24 /*
25  * C-API deallocator
26  */
27 void
28 ldap_memfree( void *p )
29 {
30         LDAP_FREE( p );
31 }
32
33 void
34 ldap_memvfree( void **v )
35 {
36         LDAP_VFREE( v );
37 }
38
39 void *
40 ldap_memalloc( ber_len_t s )
41 {
42         return LDAP_MALLOC( s );
43 }
44
45 void *
46 ldap_memcalloc( ber_len_t n, ber_len_t s )
47 {
48         return LDAP_CALLOC( n, s );
49 }
50
51 void *
52 ldap_memrealloc( void* p, ber_len_t s )
53 {
54         return LDAP_REALLOC( p, s );
55 }
56
57 char *
58 ldap_strdup( LDAP_CONST char *p )
59 {
60         return LDAP_STRDUP( p );
61 }
62
63 /*
64  * free a null-terminated array of pointers to mod structures. the
65  * structures are freed, not the array itself, unless the freemods
66  * flag is set.
67  */
68
69 void
70 ldap_mods_free( LDAPMod **mods, int freemods )
71 {
72         int     i;
73
74         if ( mods == NULL )
75                 return;
76
77         for ( i = 0; mods[i] != NULL; i++ ) {
78                 if ( mods[i]->mod_op & LDAP_MOD_BVALUES ) {
79                         if( mods[i]->mod_bvalues != NULL )
80                                 ber_bvecfree( mods[i]->mod_bvalues );
81
82                 } else if( mods[i]->mod_values != NULL ) {
83                         LDAP_VFREE( mods[i]->mod_values );
84                 }
85
86                 if ( mods[i]->mod_type != NULL ) {
87                         LDAP_FREE( mods[i]->mod_type );
88                 }
89
90                 LDAP_FREE( (char *) mods[i] );
91         }
92
93         if ( freemods ) {
94                 LDAP_FREE( (char *) mods );
95         }
96 }