From 1fdfb213733862edbdff7d961e45cb945e31633a Mon Sep 17 00:00:00 2001 From: KinoMyu Date: Tue, 6 Feb 2018 03:30:30 -0800 Subject: [PATCH] Fix move constructor --- src/HCAStreamChannel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/HCAStreamChannel.cpp b/src/HCAStreamChannel.cpp index f6059f9..a54bea9 100644 --- a/src/HCAStreamChannel.cpp +++ b/src/HCAStreamChannel.cpp @@ -44,6 +44,7 @@ HCAStreamChannel& HCAStreamChannel::operator=(HCAStreamChannel&& other) unload(); if (this != &other) { + dec = other->dec; ptr = other.ptr; size = other.size; playback_channel = other.playback_channel;