From b15bd24bbe48e338497c6257f5fe2c7fd1cbffbb Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Wed, 1 Jan 2014 22:00:24 -0800 Subject: [PATCH] altosui: Handle a missing libaltos when starting up Skip a null list of devices when figuring out what to open monitor windows for during startup. Signed-off-by: Keith Packard --- altosui/AltosUI.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 8d5cacd4..50c5baab 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -560,8 +560,9 @@ public class AltosUI extends AltosUIFrame { AltosUI altosui = new AltosUI(); java.util.List devices = AltosUSBDevice.list(Altos.product_basestation); - for (AltosDevice device : devices) - altosui.telemetry_window(device); + if (devices != null) + for (AltosDevice device : devices) + altosui.telemetry_window(device); } else { int process = process_none; for (int i = 0; i < args.length; i++) { -- 2.30.2