summaryrefslogtreecommitdiffstats
path: root/src/windows/identity/util/hashtable.c
diff options
context:
space:
mode:
authorJeffrey Altman <jaltman@secure-endpoints.com>2005-12-06 01:06:13 +0000
committerJeffrey Altman <jaltman@secure-endpoints.com>2005-12-06 01:06:13 +0000
commit6122981fdebaef3a11c57bf439133bd410b9523e (patch)
treef89098c8093e8852ef4683858337492803ccb8fd /src/windows/identity/util/hashtable.c
parent1e0c430fd23cdd3ba6c3d609c6b34314b8a7226c (diff)
downloadkrb5-6122981fdebaef3a11c57bf439133bd410b9523e.tar.gz
krb5-6122981fdebaef3a11c57bf439133bd410b9523e.tar.xz
krb5-6122981fdebaef3a11c57bf439133bd410b9523e.zip
KFW 3.0 Final Network Identity Manager updates
Add new documentation files Add new icons Add "set default" functionality to the New Credentials dialog Remove inconsistencies in the Options configuration dialog Replace the menu bar so that it responds to Alt- and keyboard shortcuts Fix an --autoinit race condition many more things.... ticket: new target_version: 1.4.4 status: resolved tags: pullup git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17546 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows/identity/util/hashtable.c')
-rw-r--r--src/windows/identity/util/hashtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows/identity/util/hashtable.c b/src/windows/identity/util/hashtable.c
index d1b02e64ff..1a4233d518 100644
--- a/src/windows/identity/util/hashtable.c
+++ b/src/windows/identity/util/hashtable.c
@@ -44,7 +44,7 @@ KHMEXP hashtable * KHMAPI hash_new_hashtable(khm_int32 n,
h->delr = delr;
h->hash = hash;
- h->bins = calloc(sizeof(hash_bin *), n);
+ h->bins = PCALLOC(sizeof(hash_bin *), n);
return h;
}