OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #ifdef DEBUG | |
6 static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
7 #endif /* DEBUG */ | |
8 | |
9 #ifndef BUILTINS_H | 5 #ifndef BUILTINS_H |
10 #include "builtins.h" | 6 #include "builtins.h" |
11 #endif /* BUILTINS_H */ | 7 #endif /* BUILTINS_H */ |
12 | 8 |
13 /* | 9 /* |
14 * builtins/find.c | 10 * builtins/find.c |
15 * | 11 * |
16 * This file implements the NSSCKMDFindObjects object for the | 12 * This file implements the NSSCKMDFindObjects object for the |
17 * "builtin objects" cryptoki module. | 13 * "builtin objects" cryptoki module. |
18 */ | 14 */ |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 loser: | 241 loser: |
246 nss_ZFreeIf(temp); | 242 nss_ZFreeIf(temp); |
247 nss_ZFreeIf(fo); | 243 nss_ZFreeIf(fo); |
248 nss_ZFreeIf(rv); | 244 nss_ZFreeIf(rv); |
249 if ((NSSArena *)NULL != arena) { | 245 if ((NSSArena *)NULL != arena) { |
250 NSSArena_Destroy(arena); | 246 NSSArena_Destroy(arena); |
251 } | 247 } |
252 return (NSSCKMDFindObjects *)NULL; | 248 return (NSSCKMDFindObjects *)NULL; |
253 } | 249 } |
254 | 250 |
OLD | NEW |