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
The Tor Project
Core
Tor
Commits
65343a96
Unverified
Commit
65343a96
authored
Aug 09, 2019
by
teor
Browse files
Merge remote-tracking branch 'tor-github/pr/1222' into combined31343_31374_035
parents
4665ac9e
b560d94a
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/ticket31374
0 → 100644
View file @
65343a96
o Minor bugfixes (compilation warning):
- Fix a compilation warning on Windows about casting a function
pointer for GetTickCount64(). Fixes bug 31374; bugfix on
0.2.9.1-alpha.
src/lib/time/compat_time.c
View file @
65343a96
...
...
@@ -519,7 +519,7 @@ monotime_init_internal(void)
HANDLE
h
=
load_windows_system_library
(
TEXT
(
"kernel32.dll"
));
if
(
h
)
{
GetTickCount64_fn
=
(
GetTickCount64_fn_t
)
GetTickCount64_fn
=
(
GetTickCount64_fn_t
)
(
void
(
*
)(
void
))
GetProcAddress
(
h
,
"GetTickCount64"
);
}
// FreeLibrary(h) ?
...
...
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