Commit a23dec10 authored by Thomas Huth's avatar Thomas Huth Committed by David Gibson
Browse files

hw/scsi/spapr_vscsi: Remove superfluous memset



g_malloc0 already clears the memory, so no need for
the additional memset here.

Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: David Gibson <david@gibson.dropbear.id.au>
Cc: Alexander Graf <agraf@suse.de>
Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
Reviewed-by: default avatarEric Blake <eblake@redhat.com>
Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
parent 185181f8
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -750,7 +750,6 @@ static void vscsi_report_luns(VSCSIState *s, vscsi_req *req)
    len = n+8;

    resp_data = g_malloc0(len);
    memset(resp_data, 0, len);
    stl_be_p(resp_data, n);
    i = found_lun0 ? 8 : 16;
    QTAILQ_FOREACH(kid, &s->bus.qbus.children, sibling) {