Browse Source

r12846@catbus: nickm | 2007-05-21 21:55:15 -0400
Oops; it is possible to have an empty store.


svn:r10247

Nick Mathewson 17 years ago
parent
commit
d23cb33a1a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/routerlist.c

+ 1 - 1
src/or/routerlist.c

@@ -393,7 +393,7 @@ router_rebuild_store(int force, int extrainfo)
   write_str_to_file(fname, "", 1);
   write_str_to_file(fname, "", 1);
 
 
   r = 0;
   r = 0;
-  tor_assert(offset > 0);
+  tor_assert(offset >= 0);
   stats->store_len = (size_t) offset;
   stats->store_len = (size_t) offset;
   stats->journal_len = 0;
   stats->journal_len = 0;
   stats->bytes_dropped = 0;
   stats->bytes_dropped = 0;