commit | 2e826dc2b143f9a4617a50153c96487a16a045ad | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Tue Sep 23 02:16:48 2014 +0000 |
committer | Android Git Automerger <android-git-automerger@android.com> | Tue Sep 23 02:16:48 2014 +0000 |
tree | b1c2d84b5e38a88b0e223369e85837247a98ebf9 | |
parent | dcf2eb9e2493dca0f80549ec83f29fc9f9a6bd43 [diff] | |
parent | ae3a8961f01e436a70cab569483b8ebcc1f56c0c [diff] |
am ae3a8961: am fed0f06b: Merge "init: Fix memory corruption when sanitizing platform paths" * commit 'ae3a8961f01e436a70cab569483b8ebcc1f56c0c': init: Fix memory corruption when sanitizing platform paths
diff --git a/init/util.c b/init/util.c index 0f69e1c..e1a3ee3 100644 --- a/init/util.c +++ b/init/util.c
@@ -329,9 +329,9 @@ if (!s) return; - for (; *s; s++) { + while (*s) { s += strspn(s, accept); - if (*s) *s = '_'; + if (*s) *s++ = '_'; } }