Loading lib/hash.c +4 −4 Original line number Diff line number Diff line Loading @@ -117,12 +117,12 @@ mk_hash_element(const void *key, size_t key_len, const void *p) (struct curl_hash_element *) malloc(sizeof(struct curl_hash_element)); if(he) { void *dup = malloc(key_len); if(dup) { void *dupkey = malloc(key_len); if(dupkey) { /* copy the key */ memcpy(dup, key, key_len); memcpy(dupkey, key, key_len); he->key = dup; he->key = dupkey; he->key_len = key_len; he->ptr = (void *) p; } Loading Loading
lib/hash.c +4 −4 Original line number Diff line number Diff line Loading @@ -117,12 +117,12 @@ mk_hash_element(const void *key, size_t key_len, const void *p) (struct curl_hash_element *) malloc(sizeof(struct curl_hash_element)); if(he) { void *dup = malloc(key_len); if(dup) { void *dupkey = malloc(key_len); if(dupkey) { /* copy the key */ memcpy(dup, key, key_len); memcpy(dupkey, key, key_len); he->key = dup; he->key = dupkey; he->key_len = key_len; he->ptr = (void *) p; } Loading