]> git.zerfleddert.de Git - ms2-fixes/commitdiff
don't try to load the module if it is already loaded
authorMichael Gernoth <michael@gernoth.net>
Tue, 30 Oct 2012 20:03:35 +0000 (21:03 +0100)
committerMichael Gernoth <michael@gernoth.net>
Tue, 30 Oct 2012 20:03:35 +0000 (21:03 +0100)
MS2Debounce/src/de/rmdir/ms2debounce/DebounceModuleHelper.java

index 2b088d799f1991e1ac66a7ffddf62cc0e8f14f79..1a424f85842a573927d6c93240ac9af757c3ed36 100644 (file)
@@ -82,6 +82,10 @@ public class DebounceModuleHelper
        }
 
        public synchronized boolean _loadModule() throws NotRootedException,ShellException {
        }
 
        public synchronized boolean _loadModule() throws NotRootedException,ShellException {
+               if (isLoaded()) {
+                       return true;
+               }
+
                File insmod = new File("/system/bin/insmod");
                if (!insmod.exists()) {
                        insmod = new File("/system/xbin/insmod");
                File insmod = new File("/system/bin/insmod");
                if (!insmod.exists()) {
                        insmod = new File("/system/xbin/insmod");
Impressum, Datenschutz