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
Nick Mathewson
Tor
Commits
a02e8666
Commit
a02e8666
authored
May 04, 2020
by
Nick Mathewson
🐛
Browse files
Merge branch 'bug34077_041' into maint-0.4.1
parents
987f2fa5
d7e166bd
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/bug34077
0 → 100644
View file @
a02e8666
o Minor bugfixes (compiler warnings):
- Fix compilation warnings with GCC 10.0.1. Fixes bug 34077; bugfix on
0.4.0.3-alpha.
src/feature/dirauth/shared_random_state.c
View file @
a02e8666
...
...
@@ -1057,8 +1057,9 @@ sr_state_set_valid_after(time_t valid_after)
sr_phase_t
sr_state_get_phase
(
void
)
{
void
*
ptr
;
void
*
ptr
=
NULL
;
state_query
(
SR_STATE_ACTION_GET
,
SR_STATE_OBJ_PHASE
,
NULL
,
&
ptr
);
tor_assert
(
ptr
);
return
*
(
sr_phase_t
*
)
ptr
;
}
...
...
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