Explorar el Código

Remove assert in sort-of c-itical path

svn:r5267
Nick Mathewson hace 20 años
padre
commit
48ade882c3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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++;