diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-10-10 17:08:00 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-10-10 17:08:00 +0200 |
commit | fec229793525b0614174b771bcb6fd72f8c047d8 (patch) | |
tree | 0016a198219bb9be88f7a6440114c58244b98ae7 /src/de | |
parent | e81132a1eb250e6b657bc970cd4964203bacdaa5 (diff) |
Fix bug that causes segfault on reconnect
Diffstat (limited to 'src/de')
-rw-r--r-- | src/de/blinkt/openvpn/OpenVPNThread.java | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/de/blinkt/openvpn/OpenVPNThread.java b/src/de/blinkt/openvpn/OpenVPNThread.java index 0bde3205..b4ead269 100644 --- a/src/de/blinkt/openvpn/OpenVPNThread.java +++ b/src/de/blinkt/openvpn/OpenVPNThread.java @@ -37,13 +37,16 @@ public class OpenVPNThread implements Runnable { } catch (Exception e) {
Log.e(TAG, "Got " + e.toString());
} finally {
+ int exitvalue = 0;
try {
-
- } catch (Exception e) {
- // ignore
+ exitvalue = mProcess.exitValue();
+ } catch ( IllegalThreadStateException ite) {
+ OpenVPN.logError("Illegal Thread state: " + ite.getLocalizedMessage());
}
-
- OpenVPN.updateStateString("NOPROCESS","No process running");
+ if( exitvalue != 0)
+ OpenVPN.logError("Process exited with exit value " + exitvalue);
+
+ OpenVPN.updateStateString("NOPROCESS","No process running.");
mService.processDied();
@@ -89,7 +92,7 @@ public class OpenVPNThread implements Runnable { return;
OpenVPN.logMessage(0, "P:", logline);
}
-
+
} catch (IOException e) {
OpenVPN.logMessage(0, "", "Error reading from output of OpenVPN process"+ e.getLocalizedMessage());
|