Browse Source

Fixed mplayer.Kill crash

pull/3866/head
Nikita Tsukanov 6 years ago
parent
commit
a496c6646c
  1. 2
      samples/interop/NativeEmbedSample/EmbedSample.cs

2
samples/interop/NativeEmbedSample/EmbedSample.cs

@ -42,7 +42,7 @@ namespace NativeEmbedSample
void DestroyLinux(IPlatformHandle handle)
{
_mplayer.Kill();
_mplayer?.Kill();
_mplayer = null;
base.DestroyNativeControlCore(handle);
}

Loading…
Cancel
Save