Skip to content
Snippets Groups Projects
Commit 03886196 authored by Stepan Salenikovich's avatar Stepan Salenikovich
Browse files

video: fix crash when calling self

Refs #67591
parent be25529f
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ m_pMutex(new QMutex()), m_FrameIdx(false) ...@@ -28,7 +28,7 @@ m_pMutex(new QMutex()), m_FrameIdx(false)
{ {
} }
Video::Renderer::Renderer(const QByteArray& id, const QSize& res) Video::Renderer::Renderer(const QByteArray& id, const QSize& res) : d_ptr(new RendererPrivate(this))
{ {
d_ptr->m_pSize = res; d_ptr->m_pSize = res;
d_ptr->m_Id = id; d_ptr->m_Id = id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment