Skip to content

Commit

Permalink
Merge pull request #510 from jbq/master
Browse files Browse the repository at this point in the history
Fix NPE in WebcamDiscoveryService
  • Loading branch information
sarxos committed Nov 22, 2016
2 parents 7e82df6 + 407b39a commit c370505
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -381,6 +381,9 @@ protected void shutdown() {

stop();

if (webcams == null)
return;

// dispose all webcams

Iterator<Webcam> wi = webcams.iterator();
Expand Down

0 comments on commit c370505

Please sign in to comment.