Am Tue, 4 May 2021 16:34:05 -0600
schrieb Jim Fehlig <jfehlig(a)suse.com>:
> + /* Will be released by libxl_domain_config_dispose */
> + b_info->vcpu_hard_affinity = calloc(vcpu_idx, sizeof(libxl_bitmap));
Fails syntax-check. You'll need to use g_new0.
There are other areas where libxl expects the caller to provide a malloc buffer, which it
free's later in its *_dispose functions. libxlMakeDiskList for example.
This looks like an inconsistency in the API.
Perhaps we assume glib folks will make no mistakes in the future to use a private
allocator again. Or we provide a simple calloc/free wrapper in libxl_api_wrapper.h, which
can be easily blacklisted in exclude_file_name_regexp--sc_prohibit_raw_allocation.
Olaf