mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
tests: vhost-user-bridge: Avoid using hardcoded /tmp
This case was written to use hardcoded /tmp directory for temporary files. Update to use g_file_open_tmp() for a portable implementation. Signed-off-by: Bin Meng <bin.meng@windriver.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20220925113032.1949844-25-bmeng.cn@gmail.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
5b9f2781c2
commit
786e46ee68
1 changed files with 1 additions and 2 deletions
|
@ -631,7 +631,6 @@ static void *notifier_thread(void *arg)
|
|||
static void
|
||||
vubr_host_notifier_setup(VubrDev *dev)
|
||||
{
|
||||
char template[] = "/tmp/vubr-XXXXXX";
|
||||
pthread_t thread;
|
||||
size_t length;
|
||||
void *addr;
|
||||
|
@ -639,7 +638,7 @@ vubr_host_notifier_setup(VubrDev *dev)
|
|||
|
||||
length = qemu_real_host_page_size() * VHOST_USER_BRIDGE_MAX_QUEUES;
|
||||
|
||||
fd = mkstemp(template);
|
||||
fd = g_file_open_tmp("vubr-XXXXXX", NULL, NULL);
|
||||
if (fd < 0) {
|
||||
vubr_die("mkstemp()");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue