提交 8305322d 编写于 作者: Y Yan Fu 提交者: Michal Privoznik

qemu: getAutoDumpPath() return value should be dumpfile not domname.

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1354238

So we spend some time and effort constructing perfect file name
for an automatic coredump of a domain, but then just leak it and
use the domain name anyway. This is probably due to a silly
mistake that slipped even through review.
Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
上级 c8f08e48
...@@ -3869,7 +3869,8 @@ getAutoDumpPath(virQEMUDriverPtr driver, ...@@ -3869,7 +3869,8 @@ getAutoDumpPath(virQEMUDriverPtr driver,
timestr)); timestr));
virObjectUnref(cfg); virObjectUnref(cfg);
return domname; VIR_FREE(domname);
return dumpfile;
} }
static void static void
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册