Parcourir la source

Remove assert in sort-of c-itical path

svn:r5267
Nick Mathewson il y a 20 ans
Parent
commit
48ade882c3
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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++;