From 893c0af051a0832b3bea59a1db4276c938e6211e Mon Sep 17 00:00:00 2001 From: Christian Date: Thu, 31 Mar 2016 21:07:16 +0200 Subject: Fixes nullptr --- plexSdOsd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexSdOsd.cpp b/plexSdOsd.cpp index 5e93b1b..b976af4 100644 --- a/plexSdOsd.cpp +++ b/plexSdOsd.cpp @@ -153,7 +153,7 @@ eOSState cPlexSdOsd::ProcessKeyDetailView(eKeys Key) state = eOSState::osEnd; } - if (state != osEnd && m_pDetailGrid->DrawTime()) m_pDetailGrid->Flush(); + if (state != osEnd && m_pDetailsView && m_pDetailGrid->DrawTime()) m_pDetailGrid->Flush(); return state; } -- cgit v1.2.3