fix possible segfault (thx satbaby)

Origin commit data
------------------
Branch: master
Commit: c66ec401c2
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2018-08-09 (Thu, 09 Aug 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
BPanther
2018-08-09 18:22:50 +02:00
parent f8df23a5ab
commit d34583e67b

View File

@@ -300,7 +300,8 @@ static int PlaybackPlay(Context_t *context)
context->playback->BackWard = 0;
context->playback->SlowMotion = 0;
context->playback->Speed = 0;
context->container->selectedContainer->Command(context, CONTAINER_STOP, NULL);
if (context->container && context->container->selectedContainer);
context->container->selectedContainer->Command(context, CONTAINER_STOP, NULL);
}
else
{
@@ -331,7 +332,8 @@ static int PlaybackPlay(Context_t *context)
context->playback->isCreationPhase = 0; // allow thread to go into next state
ret = context->container->selectedContainer->Command(context, CONTAINER_PLAY, NULL);
if (context->container && context->container->selectedContainer);
context->container->selectedContainer->Command(context, CONTAINER_PLAY, NULL);
if (ret != 0)
{
playback_err("CONTAINER_PLAY failed!\n");