Skip to content

Commit ff9e0d5

Browse files
huangli2018intel-mediadev
authored andcommitted
[Decode] Fix coverity 145548
Fix coverity 145548
1 parent dc4d003 commit ff9e0d5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

media_softlet/agnostic/common/codec/hal/dec/shared/decode_utils.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ class Mutex
100100
{
101101
return m_mutex;
102102
}
103+
104+
//forbidden mutex transfer
105+
Mutex(const Mutex&) = delete;
106+
Mutex& operator=(const Mutex&) = delete;
107+
103108
protected:
104109
PMOS_MUTEX m_mutex;
105110
MEDIA_CLASS_DEFINE_END(decode__Mutex)

0 commit comments

Comments
 (0)