Commit ad05b22d authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Renamed a few variables to avoid shadowing global declarations.

parent 9fc8800b
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
    }