mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2025-02-20 04:41:37 +00:00
avdevice/decklink_enc: do not reference this after freeing it
Fixes Coverity CID 1396863. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
89a1471a72
commit
a7946c8964
@ -55,7 +55,7 @@ public:
|
||||
|
||||
virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, LPVOID *ppv) { return E_NOINTERFACE; }
|
||||
virtual ULONG STDMETHODCALLTYPE AddRef(void) { return ++_refs; }
|
||||
virtual ULONG STDMETHODCALLTYPE Release(void) { if (!--_refs) delete this; return _refs; }
|
||||
virtual ULONG STDMETHODCALLTYPE Release(void) { if (!--_refs) {delete this; return 0;} return _refs; }
|
||||
|
||||
struct decklink_ctx *_ctx;
|
||||
AVFrame *_avframe;
|
||||
|
Loading…
x
Reference in New Issue
Block a user