X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=scripts%2Fmod%2Fmodpost.c;h=5ba203b9eddf90366bf05986c830eecc54c4b509;hb=fcd38ed0ff263156c3917c70c2fb0b7e91bfeab1;hp=9d9c5b905b359e58b9eb98eac457ef81d7f8179b;hpb=37549e94c77a94a9c32b5ae3313a3801cb66adf9;p=firefly-linux-kernel-4.4.55.git diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 9d9c5b905b35..5ba203b9eddf 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -1703,12 +1703,11 @@ static void check_sec_ref(struct module *mod, const char *modname, static char *remove_dot(char *s) { - char *end; - int n = strcspn(s, "."); + size_t n = strcspn(s, "."); - if (n > 0 && s[n] != 0) { - strtoul(s + n + 1, &end, 10); - if (end > s + n + 1 && (*end == '.' || *end == 0)) + if (n && s[n]) { + size_t m = strspn(s + n + 1, "0123456789"); + if (m && (s[n + m] == '.' || s[n + m] == 0)) s[n] = 0; } return s;