On 4/26/2021 4:01 PM, Eric Sunshine wrote: > On Mon, Apr 26, 2021 at 3:49 PM Derrick Stolee <stolee@xxxxxxxxx> wrote: >> On 4/1/2021 11:40 AM, Jeff Hostetler via GitGitGadget wrote: >>> + token = (struct fsmonitor_token_data *)xcalloc(1, sizeof(*token)); >> >> I think the best practice here is "CALLOC_ARRAY(token, 1);" >> >>> + >>> + strbuf_init(&token->token_id, 0); >> >> This is likely overkill since you used calloc() above. > > Not quite. A strbuf must be initialized either with STRBUF_INIT or > strbuf_init() in order to make strbuf.buf point at strbuf_slopbuf. Thanks! I didn't know that detail, but it makes a lot of sense. -Stolee