Commit 2093f607 authored by Roger Dingledine's avatar Roger Dingledine
Browse files

we've been stomping on memory while reading config

doesn't seem to have bitten us yet, but let's fix that :)


svn:r619
parent 99811770
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -481,7 +481,7 @@ try_next_line:
  do {
    *s = 0;
    s--;
  } while (isspace(*s));
  } while (s >= line && isspace(*s));

  key = line;
  while(isspace(*key))