X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fdo.cc;h=551b28ea57ce21393fcbaefbb47dc800b7f20724;hb=c69776b7cf0d0c26b07abd83da8a797182ff6fae;hp=854c611497c36b60a2286450cbb2b05f75861a54;hpb=625e84ebfc422790372bc2984f504bdcb4da779c;p=awesomized%2Flibmemcached diff --git a/libmemcached/do.cc b/libmemcached/do.cc index 854c6114..551b28ea 100644 --- a/libmemcached/do.cc +++ b/libmemcached/do.cc @@ -14,12 +14,10 @@ memcached_return_t memcached_do(memcached_server_write_instance_st ptr, const void *command, size_t command_length, bool with_flush) { - memcached_return_t rc; - ssize_t sent_length; - - WATCHPOINT_ASSERT(command_length); - WATCHPOINT_ASSERT(command); + assert_msg(command_length, "Programming error, somehow a command had a length of zero"); + assert_msg(command, "Programming error, somehow a command was NULL"); + memcached_return_t rc; if (memcached_failed(rc= memcached_connect(ptr))) { WATCHPOINT_ASSERT(rc == memcached_last_error(ptr->root)); @@ -37,9 +35,9 @@ memcached_return_t memcached_do(memcached_server_write_instance_st ptr, const vo memcached_io_write(ptr, NULL, 0, true); } - sent_length= memcached_io_write(ptr, command, command_length, with_flush); + ssize_t sent_length= memcached_io_write(ptr, command, command_length, with_flush); - if (sent_length == -1 || (size_t)sent_length != command_length) + if (sent_length == -1 or size_t(sent_length) != command_length) { rc= MEMCACHED_WRITE_FAILURE; } @@ -56,14 +54,14 @@ memcached_return_t memcached_vdo(memcached_server_write_instance_st ptr, bool with_flush) { memcached_return_t rc; - ssize_t sent_length; WATCHPOINT_ASSERT(count); WATCHPOINT_ASSERT(vector); - if ((rc= memcached_connect(ptr)) != MEMCACHED_SUCCESS) + if (memcached_failed(rc= memcached_connect(ptr))) { WATCHPOINT_ERROR(rc); + assert_msg(ptr->error_messages, "memcached_connect() returned an error but the memcached_server_write_instance_st showed none."); return rc; } @@ -77,7 +75,7 @@ memcached_return_t memcached_vdo(memcached_server_write_instance_st ptr, memcached_io_write(ptr, NULL, 0, true); } - sent_length= memcached_io_writev(ptr, vector, count, with_flush); + ssize_t sent_length= memcached_io_writev(ptr, vector, count, with_flush); size_t command_length= 0; for (uint32_t x= 0; x < count; ++x, vector++) @@ -85,7 +83,7 @@ memcached_return_t memcached_vdo(memcached_server_write_instance_st ptr, command_length+= vector->length; } - if (sent_length == -1 || (size_t)sent_length != command_length) + if (sent_length == -1 or size_t(sent_length) != command_length) { rc= MEMCACHED_WRITE_FAILURE; WATCHPOINT_ERROR(rc);