fix infinite loop

svn:r6090
This commit is contained in:
Roger Dingledine 2006-03-06 20:01:46 +00:00
parent a2d71f917e
commit a385b0087f

View File

@ -335,6 +335,7 @@ tor_strisprint(const char *s)
while (*s) {
if (!TOR_ISPRINT(*s))
return 0;
s++;
}
return 1;
}