gl_query_cache: Resolve use-after-move in CachedQuery move assignment operator

Avoids potential invalid junk data from being read.
This commit is contained in:
Lioncash 2020-04-15 22:20:03 -04:00
parent e33196d4e7
commit 3a60f19eaf

View File

@ -94,9 +94,9 @@ CachedQuery::CachedQuery(CachedQuery&& rhs) noexcept
: VideoCommon::CachedQueryBase<HostCounter>(std::move(rhs)), cache{rhs.cache}, type{rhs.type} {}
CachedQuery& CachedQuery::operator=(CachedQuery&& rhs) noexcept {
VideoCommon::CachedQueryBase<HostCounter>::operator=(std::move(rhs));
cache = rhs.cache;
type = rhs.type;
CachedQueryBase<HostCounter>::operator=(std::move(rhs));
return *this;
}