diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/de/blinkt/openvpn/ProfileManager.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/de/blinkt/openvpn/ProfileManager.java b/src/de/blinkt/openvpn/ProfileManager.java index a40e6fcb..d2e08a97 100644 --- a/src/de/blinkt/openvpn/ProfileManager.java +++ b/src/de/blinkt/openvpn/ProfileManager.java @@ -160,6 +160,10 @@ public class ProfileManager { ObjectInputStream vpnfile = new ObjectInputStream(context.openFileInput(vpnentry + ".vp")); VpnProfile vp = ((VpnProfile) vpnfile.readObject()); + // Sanity check + if(vp==null || vp.mName==null || vp.getUUID()==null) + continue; + profiles.put(vp.getUUID().toString(), vp); } catch (StreamCorruptedException e) { |