Skip to content

Commit c917459

Browse files
committed
Merge pull request #1 from cSploit/develop
fixes #309
2 parents 45b1c72 + 4939c4a commit c917459

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)