From: Francis Dupont Date: Fri, 9 Dec 2016 15:48:05 +0000 (+0100) Subject: [master] Replaced a NULL ... typo X-Git-Tag: trac5077_base~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9fd4f1158b5a5579f854b28affe4e6b0065aa60f;p=thirdparty%2Fkea.git [master] Replaced a NULL ... typo --- diff --git a/src/lib/hooks/callout_manager.cc b/src/lib/hooks/callout_manager.cc index e82deecbf9..5d3ceca492 100644 --- a/src/lib/hooks/callout_manager.cc +++ b/src/lib/hooks/callout_manager.cc @@ -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(0)); + CalloutEntry target(current_library_, static_cast(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