scsi: Drop superfluous conditionals around g_free()
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Fam Zheng <famz@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
e42a92ae64
commit
1c3381af32
@ -298,8 +298,7 @@ static int32_t scsi_send_command(SCSIRequest *req, uint8_t *cmd)
|
||||
#endif
|
||||
|
||||
if (r->req.cmd.xfer == 0) {
|
||||
if (r->buf != NULL)
|
||||
g_free(r->buf);
|
||||
g_free(r->buf);
|
||||
r->buflen = 0;
|
||||
r->buf = NULL;
|
||||
/* The request is used as the AIO opaque value, so add a ref. */
|
||||
@ -314,8 +313,7 @@ static int32_t scsi_send_command(SCSIRequest *req, uint8_t *cmd)
|
||||
}
|
||||
|
||||
if (r->buflen != r->req.cmd.xfer) {
|
||||
if (r->buf != NULL)
|
||||
g_free(r->buf);
|
||||
g_free(r->buf);
|
||||
r->buf = g_malloc(r->req.cmd.xfer);
|
||||
r->buflen = r->req.cmd.xfer;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user