diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-10-18 05:06:36 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-10-18 05:06:36 +0000 |
commit | 48ade882c3eaefb8db0b8fcded1041360461e766 (patch) | |
tree | 48648b8ca78228630c49eb7e9d55a51273a26371 | |
parent | cf73ff195bc3e2d64f44c5bded9cff5cdd53797e (diff) | |
download | tor-48ade882c3eaefb8db0b8fcded1041360461e766.tar.gz tor-48ade882c3eaefb8db0b8fcded1041360461e766.zip |
Remove assert in sort-of c-itical path
svn:r5267
-rw-r--r-- | src/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c index b2457a4f3b..e7a380617c 100644 --- a/src/common/util.c +++ b/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++; |