version 1.90, 2003/03/03 14:54:49
|
version 1.91, 2003/03/04 08:16:57
|
Line 1
|
Line 1
|
/* decode.c - ber input decoding routines */ |
/* decode.c - ber input decoding routines */ |
/* $OpenLDAP: pkg/ldap/libraries/liblber/decode.c,v 1.89 2003/01/23 01:19:59 hyc Exp $ */ |
/* $OpenLDAP: pkg/ldap/libraries/liblber/decode.c,v 1.90 2003/03/03 14:54:49 hyc Exp $ */ |
/* |
/* |
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. |
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. |
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file |
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file |
Line 407 nomem:
|
Line 407 nomem:
|
case BvArray: LBER_FREE((*b->res.ba)[n].bv_val); break; |
case BvArray: LBER_FREE((*b->res.ba)[n].bv_val); break; |
case BvVec: LBER_FREE((*b->res.bv)[n]->bv_val); |
case BvVec: LBER_FREE((*b->res.bv)[n]->bv_val); |
LBER_FREE((*b->res.bv)[n]); break; |
LBER_FREE((*b->res.bv)[n]); break; |
|
default: break; |
} |
} |
} |
} |
} |
} |