Fixes a NullPointerException which prevented establishing calls. Reported by Boris Grozev.

cusax-fix
Lyubomir Marinov 14 years ago
parent 01fabbeeec
commit 9443a71830

@ -1002,6 +1002,10 @@ private void callPropertyChange(PropertyChangeEvent event)
for (MediaType mediaType : MediaType.values())
{
MediaStream stream = getStream(mediaType);
if (stream == null)
continue;
MediaDevice oldDevice = stream.getDevice();
if (oldDevice != null)

Loading…
Cancel
Save