Skip to content

Commit 9934e87

Browse files
committed
Fix for Android 4.0.3 from shakalaca on github
1 parent 690dcc6 commit 9934e87

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

activity.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ int send_intent(struct su_initiator *from, struct su_request *to, const char *so
7575
// added in eclair rev 7
7676
data.writeInt32(0);
7777
}
78+
if (sdk_version >= 15) {
79+
// added in IceCreamSandwich 4.0.3
80+
data.writeInt32(0); /* Selector */
81+
}
7882
{ /* Extras */
7983
data.writeInt32(-1); /* dummy, will hold length */
8084
int oldPos = data.dataPosition();

0 commit comments

Comments
 (0)