|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xenmon: initialise dummy array
commit 8b00908c114b0546e12cd1a0076b5af622c6bc08
Author: Ian Campbell <ian.campbell@xxxxxxxxxx>
AuthorDate: Wed Feb 10 16:26:25 2016 +0000
Commit: Ian Campbell <ian.campbell@xxxxxxxxxx>
CommitDate: Thu Feb 11 15:12:18 2016 +0000
xenmon: initialise dummy array
This is just used to expand the shared backing file to the expected
size (whether this is actually necessary I'm not sure). Rather than
leaking some small amount of the processes' heap set the array to
zeroes.
While at it add a check that the malloc succeeded before using the
result.
Compile tested only.
CID: 1056095 (use of uninitialised data)
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx>
---
tools/xenmon/xenbaked.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tools/xenmon/xenbaked.c b/tools/xenmon/xenbaked.c
index 782f0c1..3d9e0ed 100644
--- a/tools/xenmon/xenbaked.c
+++ b/tools/xenmon/xenbaked.c
@@ -663,6 +663,11 @@ static void alloc_qos_data(int ncpu)
}
pgsize = getpagesize();
dummy = malloc(pgsize);
+ if (!dummy) {
+ PERROR("malloc");
+ exit(EXIT_FAILURE);
+ }
+ memset(dummy, 0, pgsize);
for (n=0; n<ncpu; n++) {
--
generated by git-patchbot for /home/xen/git/xen.git#master
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |