chore: Android version supports child processes following the main process rules
This commit is contained in:
parent
524b82734a
commit
92446efd80
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ func splitCmdline(cmdline []byte) string {
|
||||||
cmdline = bytes.Trim(cmdline, " ")
|
cmdline = bytes.Trim(cmdline, " ")
|
||||||
|
|
||||||
idx := bytes.IndexFunc(cmdline, func(r rune) bool {
|
idx := bytes.IndexFunc(cmdline, func(r rune) bool {
|
||||||
return unicode.IsControl(r) || unicode.IsSpace(r)
|
return unicode.IsControl(r) || unicode.IsSpace(r) || r == ':'
|
||||||
})
|
})
|
||||||
|
|
||||||
if idx == -1 {
|
if idx == -1 {
|
||||||
|
|
Loading…
Reference in a new issue