Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
8d9f4d2e
Commit
8d9f4d2e
authored
Dec 09, 2016
by
Francis Dupont
Browse files
[master] Replaced a NULL ... better pointer type
parent
9fd4f115
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/hooks/callout_manager.cc
View file @
8d9f4d2e
...
...
@@ -247,7 +247,7 @@ CalloutManager::deregisterAllCallouts(const std::string& name) {
/// Construct a CalloutEntry matching the current library (the callout
/// pointer is NULL as we are not checking that).
CalloutEntry
target
(
current_library_
,
static_cast
<
void
*
>
(
0
));
CalloutEntry
target
(
current_library_
,
static_cast
<
CalloutPtr
>
(
0
));
/// To decide if any entries were removed, we'll record the initial size
/// of the callout vector for the hook, and compare it with the size after
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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