mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue