mirror of
https://github.com/M66B/NetGuard.git
synced 2025-01-01 12:54:07 +00:00
parent
7c43ba977d
commit
67fbad0441
1 changed files with 5 additions and 1 deletions
|
@ -770,7 +770,11 @@ public class Util {
|
|||
} catch (IOException ignored) {
|
||||
}
|
||||
if (process != null)
|
||||
process.destroy();
|
||||
try {
|
||||
process.destroy();
|
||||
} catch (Throwable ex) {
|
||||
Log.w(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex));
|
||||
}
|
||||
}
|
||||
return builder;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue