git.cweiske.de
/
enigma2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5083a9
)
sec.h: fix eSecCommandList assignment
author
ghost
<andreas.monzner@multimedia-labs.de>
Wed, 9 Jun 2010 14:14:25 +0000
(16:14 +0200)
committer
ghost
<andreas.monzner@multimedia-labs.de>
Wed, 9 Jun 2010 14:14:25 +0000
(16:14 +0200)
lib/dvb/sec.h
patch
|
blob
|
history
diff --git
a/lib/dvb/sec.h
b/lib/dvb/sec.h
index 5d73bb7b4ca759d664b814cb11ff31d7bcc50e5f..ef8b1e0c0a561fca5b7d9989a33c1a74ea63a7f9 100644
(file)
--- 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