Junio C Hamano <junkio@xxxxxxx> wrote: > > diff --git a/config.c b/config.c > > index 2e0d5a8..83ce9e1 100644 > > --- a/config.c > > +++ b/config.c > > @@ -236,8 +236,16 @@ int git_config_int(const char *name, const char *value) > > if (value && *value) { > > char *end; > > int val = strtol(value, &end, 0); > > + while (isspace(*end)) > > + end++; > > Why? Are you allowing "1024 k"? Do we want to? Yes. Why not? -- Shawn. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html