diff options
Diffstat (limited to 'libtransport')
-rw-r--r-- | libtransport/src/hicn/transport/core/portal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libtransport/src/hicn/transport/core/portal.h b/libtransport/src/hicn/transport/core/portal.h index b2614d361..4f161e4c8 100644 --- a/libtransport/src/hicn/transport/core/portal.h +++ b/libtransport/src/hicn/transport/core/portal.h @@ -451,11 +451,12 @@ class Portal { if (it != pending_interest_hash_table_.end()) { PendingInterest::Ptr ptr = std::move(it->second); pending_interest_hash_table_.erase(it); + auto _int = ptr->getInterest(); if (ptr->getOnTimeoutCallback() != UNSET_CALLBACK) { - ptr->on_interest_timeout_callback_(std::move(ptr->getInterest())); + ptr->on_interest_timeout_callback_(std::move(_int)); } else if (consumer_callback_) { - consumer_callback_->onTimeout(std::move(ptr->getInterest())); + consumer_callback_->onTimeout(std::move(_int)); } } } |