mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-31 05:55:28 +00:00
[master] re-add return to make cppcheck happy
added a comment that at this point this is safe
This commit is contained in:
@@ -205,7 +205,7 @@ public:
|
||||
// Cancel all operations associated with the given descriptor. The
|
||||
// handlers associated with the descriptor will be invoked with the
|
||||
// operation_aborted error.
|
||||
void cancel_ops(socket_type descriptor, per_descriptor_data& descriptor_data)
|
||||
void cancel_ops(socket_type , per_descriptor_data& descriptor_data)
|
||||
{
|
||||
mutex::scoped_lock descriptor_lock(descriptor_data->mutex_);
|
||||
|
||||
|
@@ -269,6 +269,11 @@ ZoneEntry::removeCallback(const CallbackPtr& callback, AddressFamily family) {
|
||||
for (; i != callbacks_[family].end(); ++i) {
|
||||
if (*i == callback) {
|
||||
callbacks_[family].erase(i);
|
||||
// At this point, a callback should only be in the list
|
||||
// once (enforced by RunningQuery doing only one at a time)
|
||||
// If that changes, we need to revise this (can't delete
|
||||
// elements from a list we're looping over)
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user