mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 19:33:39 +08:00
qga: Fix memory allocation pasto
qmp_guest_file_seek() allocates memory for a GuestFileRead object instead of the GuestFileSeek object it actually uses. Harmless, because the GuestFileRead is slightly larger. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
This commit is contained in:
parent
2c958923bc
commit
10b7c5dd0d
@ -534,7 +534,7 @@ struct GuestFileSeek *qmp_guest_file_seek(int64_t handle, int64_t offset,
|
||||
if (ret == -1) {
|
||||
error_setg_errno(err, errno, "failed to seek file");
|
||||
} else {
|
||||
seek_data = g_malloc0(sizeof(GuestFileRead));
|
||||
seek_data = g_new0(GuestFileSeek, 1);
|
||||
seek_data->position = ftell(fh);
|
||||
seek_data->eof = feof(fh);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user