d5f1f46341
- add fixes for reserved_va mmap(NULL) case, fixes git build on arm OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=59
22 lines
705 B
Diff
22 lines
705 B
Diff
From 8132af006535df8bbf5c4f23c9f37b7d45851950 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Graf <agraf@suse.de>
|
|
Date: Thu, 8 Dec 2011 23:19:32 +0100
|
|
Subject: [PATCH] XXX fake /proc/self/maps: also fclose real file
|
|
|
|
---
|
|
linux-user/syscall.c | 1 +
|
|
1 files changed, 1 insertions(+), 0 deletions(-)
|
|
|
|
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
|
|
index 97c3303..9fabcba 100644
|
|
--- a/linux-user/syscall.c
|
|
+++ b/linux-user/syscall.c
|
|
@@ -4643,6 +4643,7 @@ static int open_self_maps(void *cpu_env, int fd)
|
|
}
|
|
|
|
free(line);
|
|
+ fclose(fp);
|
|
|
|
#if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32)
|
|
dprintf(fd, "%08llx-%08llx rw-p %08llx 00:00 0 [stack]\n",
|