aboutsummaryrefslogtreecommitdiff
path: root/lib/hash.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-08-14 15:05:13 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-08-14 15:05:13 +0000
commit905b160097be04d44ff23092c2d161e6badcc172 (patch)
tree1e265fdbd8fbd663d188b8ce5e0f6e2b4a5b844d /lib/hash.c
parent52596c339bf27015d2b1fdf3dc8dd9ae55be8bb3 (diff)
1. check allocs
2. don't leave allocated memory behind when returning error
Diffstat (limited to 'lib/hash.c')
-rw-r--r--lib/hash.c33
1 files changed, 24 insertions, 9 deletions
diff --git a/lib/hash.c b/lib/hash.c
index 7310aba5a..0d493c58a 100644
--- a/lib/hash.c
+++ b/lib/hash.c
@@ -64,8 +64,9 @@ _hash_element_dtor (void *user, void *element)
free(e);
}
-void
-Curl_hash_init (curl_hash *h, int slots, curl_hash_dtor dtor)
+/* return 1 on error, 0 is fine */
+int
+Curl_hash_init(curl_hash *h, int slots, curl_hash_dtor dtor)
{
int i;
@@ -74,21 +75,35 @@ Curl_hash_init (curl_hash *h, int slots, curl_hash_dtor dtor)
h->slots = slots;
h->table = (curl_llist **) malloc(slots * sizeof(curl_llist *));
- for (i = 0; i < slots; ++i) {
- h->table[i] = Curl_llist_alloc((curl_llist_dtor) _hash_element_dtor);
+ if(h->table) {
+ for (i = 0; i < slots; ++i) {
+ h->table[i] = Curl_llist_alloc((curl_llist_dtor) _hash_element_dtor);
+ if(!h->table[i]) {
+ while(i--)
+ Curl_llist_destroy(h->table[i], NULL);
+ free(h->table);
+ return 1; /* failure */
+ }
+ }
+ return 0; /* fine */
}
+ else
+ return 1; /* failure */
}
curl_hash *
-Curl_hash_alloc (int slots, curl_hash_dtor dtor)
+Curl_hash_alloc(int slots, curl_hash_dtor dtor)
{
curl_hash *h;
h = (curl_hash *) malloc(sizeof(curl_hash));
- if (NULL == h)
- return NULL;
-
- Curl_hash_init(h, slots, dtor);
+ if (h) {
+ if(Curl_hash_init(h, slots, dtor)) {
+ /* failure */
+ free(h);
+ h = NULL;
+ }
+ }
return h;
}