Skip to content

Commit 4939c4a

Browse files
committed
fixes #309
1 parent 45b1c72 commit 4939c4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cSploit/src/org/csploit/android/core/ChildManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ private static void dispatchEvent(Child c, Event event) {
164164
if(c.receiver != null)
165165
c.receiver.onEnd(c.exitValue);
166166
terminated = true;
167-
crash = c.exitValue > 126 && c.exitValue != 130 && c.exitValue != 137 && c.exitValue < 150;
167+
crash = c.exitValue > 128 && c.exitValue != 130 && c.exitValue != 137 && c.exitValue < 150;
168168
if(crash) {
169169
c.signal = c.exitValue - 128;
170170
}

0 commit comments

Comments
 (0)