Renamed a few variables to avoid shadowing global declarations.

This commit is contained in:
Dan Fandrich 2007-09-27 18:12:03 +00:00
parent 9fc8800b6d
commit ad05b22de3
1 changed files with 4 additions and 4 deletions

View File

@ -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;
}