On Mon, Apr 26, 2021 at 3:49 PM Derrick Stolee [off-list ref] wrote:
On 4/1/2021 11:40 AM, Jeff Hostetler via GitGitGadget wrote:
quoted
+ token = (struct fsmonitor_token_data *)xcalloc(1, sizeof(*token));
I think the best practice here is "CALLOC_ARRAY(token, 1);"
quoted
+
+ 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.