[or-cvs] Remove assert in sort-of c-itical path
Nick Mathewson
nickm at seul.org
Tue Oct 18 05:06:39 UTC 2005
Update of /home/or/cvsroot/tor/src/common
In directory moria:/tmp/cvs-serv26482/src/common
Modified Files:
util.c
Log Message:
Remove assert in sort-of c-itical path
Index: util.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/common/util.c,v
retrieving revision 1.227
retrieving revision 1.228
diff -u -d -r1.227 -r1.228
--- util.c 3 Oct 2005 20:20:38 -0000 1.227
+++ util.c 18 Oct 2005 05:06:36 -0000 1.228
@@ -409,7 +409,7 @@
const char *
find_whitespace(const char *s)
{
- tor_assert(s);
+ /* tor_assert(s); */
while (*s && !TOR_ISSPACE(*s) && *s != '#')
s++;
More information about the tor-commits
mailing list