Re: [Qemu-devel] [PATCH] vl.c: Exit QEMU early if no machine is found

2012-08-09 Thread Stefan Hajnoczi
On Tue, Jul 24, 2012 at 12:42:20AM +0800, riegama...@gmail.com wrote: > From: Dunrong Huang > > We check whether the variable machine is NULL or not before accessing > it. If machine is NULL, exit QEMU with an error, this can avoids a > segfault error. > > Signed-off-by: Dunrong Huang > --- >

Re: [Qemu-devel] [PATCH] vl.c: Exit QEMU early if no machine is found

2012-08-09 Thread Markus Armbruster
riegama...@gmail.com writes: > From: Dunrong Huang > > We check whether the variable machine is NULL or not before accessing > it. If machine is NULL, exit QEMU with an error, this can avoids a > segfault error. > > Signed-off-by: Dunrong Huang Commit message lacks detail on how to reproduce th

[Qemu-devel] [PATCH] vl.c: Exit QEMU early if no machine is found

2012-07-23 Thread riegamaths
From: Dunrong Huang We check whether the variable machine is NULL or not before accessing it. If machine is NULL, exit QEMU with an error, this can avoids a segfault error. Signed-off-by: Dunrong Huang --- vl.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/v