Browse Source

Remove assert in sort-of c-itical path

svn:r5267
Nick Mathewson 20 years ago
parent
commit
48ade882c3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/util.c

+ 1 - 1
src/common/util.c

@@ -409,7 +409,7 @@ eat_whitespace_no_nl(const char *s)
 const char *
 find_whitespace(const char *s)
 {
-  tor_assert(s);
+  /* tor_assert(s); */
 
   while (*s && !TOR_ISSPACE(*s) && *s != '#')
     s++;