]> Git Repo - qemu.git/commitdiff
blockdev: Keep a copy of DriveInfo.serial
authorKevin Wolf <[email protected]>
Fri, 15 Mar 2013 09:35:06 +0000 (10:35 +0100)
committerStefan Hajnoczi <[email protected]>
Fri, 15 Mar 2013 15:07:49 +0000 (16:07 +0100)
Pointing to a QemuOpts element is surprising and can lead to subtle
use-after-free errors when the QemuOpts is freed after all options are
parsed.

Signed-off-by: Kevin Wolf <[email protected]>
Signed-off-by: Stefan Hajnoczi <[email protected]>
blockdev.c
include/sysemu/blockdev.h

index d67917486f31c8b78c518ce222cf356e99c26dd8..acf1c324813e0a4a8170c81d3e775c359af5b889 100644 (file)
@@ -191,6 +191,7 @@ static void drive_uninit(DriveInfo *dinfo)
     bdrv_delete(dinfo->bdrv);
     g_free(dinfo->id);
     QTAILQ_REMOVE(&drives, dinfo, next);
+    g_free(dinfo->serial);
     g_free(dinfo);
 }
 
@@ -566,7 +567,9 @@ DriveInfo *drive_init(QemuOpts *opts, BlockInterfaceType block_default_type)
     dinfo->trans = translation;
     dinfo->opts = opts;
     dinfo->refcount = 1;
-    dinfo->serial = serial;
+    if (serial != NULL) {
+        dinfo->serial = g_strdup(serial);
+    }
     QTAILQ_INSERT_TAIL(&drives, dinfo, next);
 
     bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error);
index 1fe533299ec5bd699905b68f3eddb94e403dc2cf..804ec8839b0d92fabadab31b1ee991e8d120063f 100644 (file)
@@ -40,7 +40,7 @@ struct DriveInfo {
     int media_cd;
     int cyls, heads, secs, trans;
     QemuOpts *opts;
-    const char *serial;
+    char *serial;
     QTAILQ_ENTRY(DriveInfo) next;
     int refcount;
 };
This page took 0.027972 seconds and 4 git commands to generate.