Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mike Perry
Tor
Commits
b2d79f27
Commit
b2d79f27
authored
Jan 10, 2006
by
Roger Dingledine
Browse files
or_state_validate() needs an extra arg too or it will crash
svn:r5772
parent
f4299f0f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/or/config.c
View file @
b2d79f27
...
...
@@ -358,7 +358,8 @@ static int write_configuration_file(const char *fname, or_options_t *options);
static
config_line_t
*
get_assigned_option
(
config_format_t
*
fmt
,
or_options_t
*
options
,
const
char
*
key
);
static
void
config_init
(
config_format_t
*
fmt
,
void
*
options
);
static
int
or_state_validate
(
or_state_t
*
old_options
,
or_state_t
*
options
);
static
int
or_state_validate
(
or_state_t
*
old_options
,
or_state_t
*
options
,
int
from_setconf
);
static
uint64_t
config_parse_memunit
(
const
char
*
s
,
int
*
ok
);
static
int
config_parse_interval
(
const
char
*
s
,
int
*
ok
);
...
...
@@ -3562,8 +3563,9 @@ get_or_state_fname(void)
}
/** DOCDOC */
/* XXX from_setconf is here because of bug 238 */
static
int
or_state_validate
(
or_state_t
*
old_state
,
or_state_t
*
state
)
or_state_validate
(
or_state_t
*
old_state
,
or_state_t
*
state
,
int
from_setconf
)
{
const
char
*
err
;
tor_version_t
v
;
...
...
@@ -3629,7 +3631,7 @@ or_state_load(void)
goto
done
;
}
if
(
or_state_validate
(
NULL
,
new_state
)
<
0
)
if
(
or_state_validate
(
NULL
,
new_state
,
1
)
<
0
)
goto
done
;
if
(
contents
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment