commit | 14a3f32d9e0c955a63b046fd3542127d1778520b | [log] [tgz] |
---|---|---|
author | Gerd Hoffmann <kraxel@redhat.com> | Mon Oct 26 12:18:24 2009 +0100 |
committer | Anthony Liguori <aliguori@us.ibm.com> | Fri Oct 30 08:39:29 2009 -0500 |
tree | 664971608ac2d55d178fea4be40109e52e9b595b | |
parent | 9c282718aafd021661f0fa0431322a7df75705b0 [diff] [blame] |
rom loader: use qemu_strdup. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
diff --git a/hw/loader.c b/hw/loader.c index 7aa1a67..6baafa8 100644 --- a/hw/loader.c +++ b/hw/loader.c
@@ -559,7 +559,7 @@ rom->name = qemu_strdup(file); rom->path = qemu_find_file(QEMU_FILE_TYPE_BIOS, rom->name); if (rom->path == NULL) { - rom->path = strdup(file); + rom->path = qemu_strdup(file); } fd = open(rom->path, O_RDONLY | O_BINARY);