On Tue, Aug 11, 2015 at 09:28:34AM -0700, Stefan Beller wrote: > On Tue, Aug 11, 2015 at 9:17 AM, Jeff King <peff@xxxxxxxx> wrote: > > We use a fixed-size buffer of 4096 bytes to format die() and > > error() messages. We explicitly avoided using a strbuf or > > other fanciness here, because we want to make sure that we > > report the message even in the face of malloc() failure > > (after all, we might even be dying due to a malloc call). > > Would it make sense to allocate memory in the early startup phase > for a possible error message? > So instead of putting 4kb on the stack we'd just have an unused 16kb > on the heap. Isn't that just punting on the problem? Now your 16kb filename will get truncated messages (in general we cannot even work with such files, but it is nice if the error message telling us so is readable). If stack space is the problem, we can just put 16kb in BSS. But I think we really do want something that grows to the appropriate size. Or we need to start being more clever about our truncation. E.g., printing: error: unable to stat 'aaaaaaaaa[...]aaaaaa/foo': File too long where the "[...]" is literally what we would print. The trouble with that approach is that it is hard to intercept large strings without re-implementing all of stdio's formatting. -Peff -- 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