version 1.1, 2012/02/21 22:30:18
|
version 1.1.1.1, 2012/10/09 09:06:54
|
Line 3
|
Line 3
|
Functions supporting the object management protocol... */ |
Functions supporting the object management protocol... */ |
|
|
/* |
/* |
* Copyright (c) 2004-2007,2009 by Internet Systems Consortium, Inc. ("ISC") | * Copyright (c) 2009,2012 by Internet Systems Consortium, Inc. ("ISC") |
| * Copyright (c) 2004-2007 by Internet Systems Consortium, Inc. ("ISC") |
* Copyright (c) 1999-2003 by Internet Software Consortium |
* Copyright (c) 1999-2003 by Internet Software Consortium |
* |
* |
* Permission to use, copy, modify, and distribute this software for any |
* Permission to use, copy, modify, and distribute this software for any |
Line 926 isc_result_t omapi_protocol_destroy (omapi_object_t *h
|
Line 927 isc_result_t omapi_protocol_destroy (omapi_object_t *h
|
dfree (p -> default_auth, file, line); |
dfree (p -> default_auth, file, line); |
|
|
while (p -> remote_auth_list) { |
while (p -> remote_auth_list) { |
omapi_remote_auth_t *r = p -> remote_auth_list -> next; | omapi_remote_auth_t *r = p -> remote_auth_list; |
p -> remote_auth_list = r; | p -> remote_auth_list = p -> remote_auth_list -> next; |
if (r) { | omapi_object_dereference (&r -> a, file, line); |
omapi_object_dereference (&r -> a, file, line); | dfree (r, file, line); |
dfree (r, file, line); | |
} | |
} |
} |
return ISC_R_SUCCESS; |
return ISC_R_SUCCESS; |
} |
} |