-Wshadow for hash.c
This commit is contained in:
committed by
Dmitry Podgorny
parent
0e8d407f93
commit
0acec5c335
20
src/hash.c
20
src/hash.c
@@ -47,7 +47,7 @@ struct _hash_iterator_t {
|
|||||||
|
|
||||||
/** allocate and initialize a new hash table */
|
/** allocate and initialize a new hash table */
|
||||||
hash_t *hash_new(xmpp_ctx_t * const ctx, const int size,
|
hash_t *hash_new(xmpp_ctx_t * const ctx, const int size,
|
||||||
hash_free_func free)
|
hash_free_func free_func)
|
||||||
{
|
{
|
||||||
hash_t *result = NULL;
|
hash_t *result = NULL;
|
||||||
|
|
||||||
@@ -62,7 +62,7 @@ hash_t *hash_new(xmpp_ctx_t * const ctx, const int size,
|
|||||||
result->length = size;
|
result->length = size;
|
||||||
|
|
||||||
result->ctx = ctx;
|
result->ctx = ctx;
|
||||||
result->free = free;
|
result->free = free_func;
|
||||||
result->num_keys = 0;
|
result->num_keys = 0;
|
||||||
/* give the caller a reference */
|
/* give the caller a reference */
|
||||||
result->ref = 1;
|
result->ref = 1;
|
||||||
@@ -128,7 +128,7 @@ int hash_add(hash_t *table, const char * const key, void *data)
|
|||||||
{
|
{
|
||||||
xmpp_ctx_t *ctx = table->ctx;
|
xmpp_ctx_t *ctx = table->ctx;
|
||||||
hashentry_t *entry = NULL;
|
hashentry_t *entry = NULL;
|
||||||
int index = _hash_key(table, key);
|
int table_index = _hash_key(table, key);
|
||||||
|
|
||||||
/* drop existing entry, if any */
|
/* drop existing entry, if any */
|
||||||
hash_drop(table, key);
|
hash_drop(table, key);
|
||||||
@@ -144,8 +144,8 @@ int hash_add(hash_t *table, const char * const key, void *data)
|
|||||||
entry->value = data;
|
entry->value = data;
|
||||||
/* insert ourselves in the linked list */
|
/* insert ourselves in the linked list */
|
||||||
/* TODO: this leaks duplicate keys */
|
/* TODO: this leaks duplicate keys */
|
||||||
entry->next = table->entries[index];
|
entry->next = table->entries[table_index];
|
||||||
table->entries[index] = entry;
|
table->entries[table_index] = entry;
|
||||||
table->num_keys++;
|
table->num_keys++;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
@@ -155,11 +155,11 @@ int hash_add(hash_t *table, const char * const key, void *data)
|
|||||||
void *hash_get(hash_t *table, const char *key)
|
void *hash_get(hash_t *table, const char *key)
|
||||||
{
|
{
|
||||||
hashentry_t *entry;
|
hashentry_t *entry;
|
||||||
int index = _hash_key(table, key);
|
int table_index = _hash_key(table, key);
|
||||||
void *result = NULL;
|
void *result = NULL;
|
||||||
|
|
||||||
/* look up the hash entry */
|
/* look up the hash entry */
|
||||||
entry = table->entries[index];
|
entry = table->entries[table_index];
|
||||||
while (entry != NULL) {
|
while (entry != NULL) {
|
||||||
/* traverse the linked list looking for the key */
|
/* traverse the linked list looking for the key */
|
||||||
if (!strcmp(key, entry->key)) {
|
if (!strcmp(key, entry->key)) {
|
||||||
@@ -178,10 +178,10 @@ int hash_drop(hash_t *table, const char *key)
|
|||||||
{
|
{
|
||||||
xmpp_ctx_t *ctx = table->ctx;
|
xmpp_ctx_t *ctx = table->ctx;
|
||||||
hashentry_t *entry, *prev;
|
hashentry_t *entry, *prev;
|
||||||
int index = _hash_key(table, key);
|
int table_index = _hash_key(table, key);
|
||||||
|
|
||||||
/* look up the hash entry */
|
/* look up the hash entry */
|
||||||
entry = table->entries[index];
|
entry = table->entries[table_index];
|
||||||
prev = NULL;
|
prev = NULL;
|
||||||
while (entry != NULL) {
|
while (entry != NULL) {
|
||||||
/* traverse the linked list looking for the key */
|
/* traverse the linked list looking for the key */
|
||||||
@@ -190,7 +190,7 @@ int hash_drop(hash_t *table, const char *key)
|
|||||||
xmpp_free(ctx, entry->key);
|
xmpp_free(ctx, entry->key);
|
||||||
if (table->free) table->free(ctx, entry->value);
|
if (table->free) table->free(ctx, entry->value);
|
||||||
if (prev == NULL) {
|
if (prev == NULL) {
|
||||||
table->entries[index] = entry->next;
|
table->entries[table_index] = entry->next;
|
||||||
} else {
|
} else {
|
||||||
prev->next = entry->next;
|
prev->next = entry->next;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user