mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
vhost: fix a memory leak
vhost exists a call for g_file_get_contents, but not call g_free. Signed-off-by: Peng Hao<peng.hao2@zte.com.cn> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
committed by
Michael S. Tsirkin
parent
2cef91cf49
commit
08b9e0ba62
@@ -52,11 +52,13 @@ static int vhost_kernel_memslots_limit(struct vhost_dev *dev)
|
||||
&s, NULL, NULL)) {
|
||||
uint64_t val = g_ascii_strtoull(s, NULL, 10);
|
||||
if (!((val == G_MAXUINT64 || !val) && errno)) {
|
||||
g_free(s);
|
||||
return val;
|
||||
}
|
||||
error_report("ignoring invalid max_mem_regions value in vhost module:"
|
||||
" %s", s);
|
||||
}
|
||||
g_free(s);
|
||||
return limit;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user