Commit 4cd4bfa1 authored by topjohnwu's avatar topjohnwu

Add ':' to allowed characters for magiskhide process name

parent 16b40096
...@@ -61,7 +61,7 @@ static bool validate(const char *s) { ...@@ -61,7 +61,7 @@ static bool validate(const char *s) {
bool dot = false; bool dot = false;
for (char c; (c = *s); ++s) { for (char c; (c = *s); ++s) {
if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') ||
(c >= '0' && c <= '9') || c == '_') { (c >= '0' && c <= '9') || c == '_' || c == ':') {
dot = false; dot = false;
continue; continue;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment