From 98835799d4f17e026731964509e8d1179975da80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20F=C3=BCrst?= Date: Tue, 6 Feb 2024 23:36:55 +0100 Subject: [PATCH] also copy the invalid handlers pointer (see last commit) on CacheData copy constructor --- offloading-cacher/cache.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/offloading-cacher/cache.hpp b/offloading-cacher/cache.hpp index 6856332..a60fd2e 100644 --- a/offloading-cacher/cache.hpp +++ b/offloading-cacher/cache.hpp @@ -678,6 +678,7 @@ inline dsacache::CacheData::CacheData(const dsacache::CacheData& other) { incomplete_cache_ = other.incomplete_cache_; handlers_ = other.handlers_; + invalid_handlers_ = other.invalid_handlers_; } inline dsacache::CacheData::~CacheData() {