aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-06-09 16:14:25 +0200
committerghost <andreas.monzner@multimedia-labs.de>2010-06-09 16:14:47 +0200
commit3607b109c546c9bbd030168e45733666433ffca0 (patch)
treee5812a433c745dd52a0de9ed74d70b261e9c91d2
parenta39ea95f5376d25874ebfbae8f10b9e6761f368b (diff)
downloadenigma2-3607b109c546c9bbd030168e45733666433ffca0.tar.gz
enigma2-3607b109c546c9bbd030168e45733666433ffca0.zip
sec.h: fix eSecCommandList assignment
-rw-r--r--lib/dvb/sec.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/dvb/sec.h b/lib/dvb/sec.h
index 5d73bb7b..ef8b1e0c 100644
--- a/lib/dvb/sec.h
+++ b/lib/dvb/sec.h
@@ -133,6 +133,12 @@ public:
{
return secSequence.size();
}
+ eSecCommandList &operator=(const eSecCommandList &lst)
+ {
+ secSequence = lst.secSequence;
+ cur = begin();
+ return *this;
+ }
};
#endif