Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -481,7 +481,7 @@ try_next_line:
do {
*s = 0;
s--;
} while (isspace(*s));
} while (s >= line && isspace(*s));
key = line;
while(isspace(*key))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment