In function virQEMUCapsParseMachineTypesStr, VIR_STRNDUP allocates
memory for 'name' in {do,while} loop. If 'name' isn't freed before
'continue', its memory will be allocated again in the next loop.
In this case the memory allocated for 'name' in privious loop is
useless and not freed. Free it before continue this loop to fix that.
Signed-off-by: Wang Rui <moon.wangrui@huawei.com>
if ((t = strstr(p, "(alias of ")) && (!next || t < next)) {
p = t + strlen("(alias of ");
- if (!(t = strchr(p, ')')) || (next && t >= next))
+ if (!(t = strchr(p, ')')) || (next && t >= next)) {
+ VIR_FREE(name);
continue;
+ }
if (VIR_STRNDUP(canonical, p, t - p) < 0) {
VIR_FREE(name);