From ad05b22de350f87f295a09fb6e0745b91216aa21 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 27 Sep 2007 18:12:03 +0000 Subject: [PATCH] Renamed a few variables to avoid shadowing global declarations. --- lib/hash.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/hash.c b/lib/hash.c index c8b5f8b37..69437bf48 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -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; }