Removed old asserts in client apps.
author <brian@localhost.localdomain> <>
Fri, 2 May 2008 22:11:07 +0000 (15:11 -0700)
committer <brian@localhost.localdomain> <>
Fri, 2 May 2008 22:11:07 +0000 (15:11 -0700)
clients/memcp.c
clients/memslap.c
clients/memstat.c
libmemcached/memcached_hosts.c

index 780514c1bc56b7bf7daac5878f85cd8449a9af5f..5b80fd645597142dca09466721f1ac55c9c00188 100644 (file)
@@ -10,7 +10,6 @@
 #include <errno.h>
 #include <strings.h>
 #include <string.h>
-#include <assert.h>
 
 #include <libmemcached/memcached.h>
 
@@ -106,7 +105,12 @@ int main(int argc, char *argv[])
       fprintf(stderr, "read: %s\n", strerror(errno)); 
       exit(1);
     }
-    assert(read_length == sbuf.st_size);
+
+    if (read_length != sbuf.st_size);
+    {
+      fprintf(stderr, "Failure reading from file\n");
+      exit(1);
+    }
 
     if (opt_method == OPT_ADD)
       rc= memcached_add(memc, ptr, strlen(ptr),
index 01f11e2d75dd08d7d1efb494a882538e5455298a..6fc8176f75cbd1e855b24078f23297bbdb6eb038 100644 (file)
@@ -6,7 +6,6 @@
 #include <sys/types.h>
 #include <sys/mman.h>
 #include <fcntl.h>
-#include <assert.h>
 #include <sys/time.h>
 #include <getopt.h>
 #include <pthread.h>
index 3f1a78a3e73b9de0da5bc7d96b81644a437da200..36ee343e156745baafb45034a4f4271ccb407e76 100644 (file)
@@ -5,7 +5,6 @@
 #include <sys/mman.h>
 #include <fcntl.h>
 #include <string.h>
-#include <assert.h>
 #include <getopt.h>
 
 #include <libmemcached/memcached.h>
@@ -71,8 +70,6 @@ int main(int argc, char *argv[])
     char **ptr;
 
     list= memcached_stat_get_keys(memc, &stat[x], &rc);
-    assert(list);
-    assert(rc == MEMCACHED_SUCCESS);
 
     printf("Server: %s (%u)\n", memcached_server_name(memc, server_list[x]),
           memcached_server_port(memc, server_list[x]));
index 231b2167ba37b2f876e3527baea682eee73316c1..2678a7c1ae131a9ada0d451dd868fb02528ba534 100644 (file)
@@ -221,10 +221,7 @@ memcached_return memcached_server_push(memcached_st *ptr, memcached_server_st *l
                                      sizeof(memcached_server_st) * (count + ptr->number_of_hosts));
 
   if (!new_host_list)
-  {
-    assert(0);
     return MEMCACHED_MEMORY_ALLOCATION_FAILURE;
-  }
 
   ptr->hosts= new_host_list;