On 10/28/20 12:22 PM, Philippe Mathieu-Daudé wrote: > + g_autofree void *dtb; > > dtb = load_device_tree(dtb_filename, &dtb_size);
With g_autofree, we must initialize the variable on declaration. Often this is with NULL, but in this case, just merge these two lines. With that, Reviewed-by: Richard Henderson <richard.hender...@linaro.org> r~