mirror of
				https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
				synced 2023-10-05 13:01:48 +00:00 
			
		
		
		
	Fix a segfault
In the function "cDetailView::InitiateView" there was a segfault when the "call->type = tNone".
This commit is contained in:
		| @@ -32,6 +32,8 @@ void cDetailView::InitiateView(void) { | ||||
|             view = new cMovieView(call.movieId); | ||||
|         } else if (call.type == tSeries) { | ||||
|             view = new cSeriesView(call.seriesId, call.episodeId); | ||||
|         } else { | ||||
|             view = new cEPGView(); | ||||
|         } | ||||
|     } else { | ||||
|         view = new cEPGView();                 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user