Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
hiredis
Commits
fa900ef7
Commit
fa900ef7
authored
Oct 10, 2021
by
michael-grunder
Browse files
Fix unused variable warning.
parent
e489846b
Changes
1
Hide whitespace changes
Inline
Side-by-side
test.c
View file @
fa900ef7
...
...
@@ -768,6 +768,8 @@ static void *hi_calloc_fail(size_t nmemb, size_t size) {
}
static
void
*
hi_calloc_insecure
(
size_t
nmemb
,
size_t
size
)
{
(
void
)
nmemb
;
(
void
)
size
;
insecure_calloc_calls
++
;
return
(
void
*
)
0xdeadc0de
;
}
...
...
Write
Preview
Markdown
is supported
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