From e86a9a41d289e107bf235baaac766c109f23a5c6 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Tue, 17 Sep 2013 10:59:33 +0200 Subject: Fix a few market console errors --- src/de/blinkt/openvpn/ConfigConverter.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/de/blinkt/openvpn/ConfigConverter.java') diff --git a/src/de/blinkt/openvpn/ConfigConverter.java b/src/de/blinkt/openvpn/ConfigConverter.java index 22109f81..75620455 100644 --- a/src/de/blinkt/openvpn/ConfigConverter.java +++ b/src/de/blinkt/openvpn/ConfigConverter.java @@ -35,7 +35,7 @@ public class ConfigConverter extends ListActivity { public static final String IMPORT_PROFILE = "de.blinkt.openvpn.IMPORT_PROFILE"; - private VpnProfile mResult; + private VpnProfile mResult; private ArrayAdapter mArrayAdapter; private List mPathsegments; @@ -306,7 +306,8 @@ public class ConfigConverter extends ListActivity { InputStream input = new FileInputStream(file); long len= file.length(); - + if (len > VpnProfile.MAX_EMBED_FILE_SIZE) + throw new IOException("File size of file to import too large."); // Create the byte array to hold the data byte[] bytes = new byte[(int) len]; -- cgit v1.2.3