From 7be0a24db49a94fbadb7bc211b9f581689d80b07 Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Sat, 25 Jun 2011 20:27:55 -0700 Subject: [PATCH] Fix error condition (which,... would not happen under current API). --- libmemcached/hosts.cc | 17 ++++++++++------- libmemcached/server_list.cc | 7 ++++++- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/libmemcached/hosts.cc b/libmemcached/hosts.cc index 32bf8ce3..4c419b02 100644 --- a/libmemcached/hosts.cc +++ b/libmemcached/hosts.cc @@ -362,21 +362,20 @@ memcached_return_t memcached_server_push(memcached_st *ptr, const memcached_serv memcached_server_write_instance_st instance; if ((ptr->flags.use_udp && list[x].type != MEMCACHED_CONNECTION_UDP) - || ((list[x].type == MEMCACHED_CONNECTION_UDP) - && ! (ptr->flags.use_udp)) ) + or ((list[x].type == MEMCACHED_CONNECTION_UDP) + and ! (ptr->flags.use_udp)) ) { return MEMCACHED_INVALID_HOST_PROTOCOL; } WATCHPOINT_ASSERT(list[x].hostname[0] != 0); + // We have extended the array, and now we will find it, and use it. instance= memcached_server_instance_fetch(ptr, memcached_server_count(ptr)); WATCHPOINT_ASSERT(instance); - /* TODO check return type */ - instance= memcached_server_create_with(ptr, instance, list[x].hostname, - list[x].port, list[x].weight, list[x].type); - if (not instance) + if (not memcached_server_create_with(ptr, instance, list[x].hostname, + list[x].port, list[x].weight, list[x].type)) { return memcached_set_error(*ptr, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT); } @@ -480,7 +479,10 @@ static memcached_return_t server_add(memcached_st *ptr, const char *hostname, /* TODO: Check return type */ memcached_server_write_instance_st instance= memcached_server_instance_fetch(ptr, memcached_server_count(ptr)); - (void)memcached_server_create_with(ptr, instance, hostname, port, weight, type); + if (not memcached_server_create_with(ptr, instance, hostname, port, weight, type)) + { + return memcached_set_error(*ptr, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT); + } if (weight > 1) { @@ -489,6 +491,7 @@ static memcached_return_t server_add(memcached_st *ptr, const char *hostname, ptr->number_of_hosts++; + // @note we place the count in the bottom of the server list instance= memcached_server_instance_fetch(ptr, 0); memcached_servers_set_count(instance, memcached_server_count(ptr)); diff --git a/libmemcached/server_list.cc b/libmemcached/server_list.cc index 8a76bf39..6cf6ae94 100644 --- a/libmemcached/server_list.cc +++ b/libmemcached/server_list.cc @@ -45,7 +45,12 @@ memcached_server_list_append_with_weight(memcached_server_list_st ptr, } /* @todo Check return type */ - memcached_server_create_with(NULL, &new_host_list[count-1], hostname, port, weight, port ? MEMCACHED_CONNECTION_TCP : MEMCACHED_CONNECTION_UNIX_SOCKET); + if (not memcached_server_create_with(NULL, &new_host_list[count-1], hostname, port, weight, port ? MEMCACHED_CONNECTION_TCP : MEMCACHED_CONNECTION_UNIX_SOCKET)) + { + ptr->cached_errno= errno; + *error= MEMCACHED_MEMORY_ALLOCATION_FAILURE; + return NULL; + } // Handset allocated since new_host_list->options.is_allocated= true; -- 2.30.2