Steffen Prohaska <[email protected]> writes: >>> + if (limit == -1) { >>> + const char *env = getenv("GIT_MMAP_LIMIT"); >>> + limit = env ? atoi(env) * 1024 : 0; > > ... this should then be changed to atol(env), and ...
In the real codepath (not debugging aid like this) we try to avoid atoi/atol so that we can catch errors like feeding "123Q" and parsing it as 123. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html

