diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-10-03 22:33:25 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-10-03 22:42:59 -0400 |
commit | ca16f580a5db7e60bfafe59a50bb133bd3347491 (patch) | |
tree | 0a3fd31a489c5c3f72ca0170612a8b887d45f3a5 /tools/lguest | |
parent | bb8111086c12ebdadc0544ba04dccd3aad212ad2 (diff) |
lguest: fix occasional crash in example launcher.
We usually got away with ->next on the final entry being NULL, but it
finally bit me.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: stable@kernel.org
Diffstat (limited to 'tools/lguest')
-rw-r--r-- | tools/lguest/lguest.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/lguest/lguest.c b/tools/lguest/lguest.c index f759f4f097c7..fd2f9221b241 100644 --- a/tools/lguest/lguest.c +++ b/tools/lguest/lguest.c | |||
@@ -1299,6 +1299,7 @@ static struct device *new_device(const char *name, u16 type) | |||
1299 | dev->feature_len = 0; | 1299 | dev->feature_len = 0; |
1300 | dev->num_vq = 0; | 1300 | dev->num_vq = 0; |
1301 | dev->running = false; | 1301 | dev->running = false; |
1302 | dev->next = NULL; | ||
1302 | 1303 | ||
1303 | /* | 1304 | /* |
1304 | * Append to device list. Prepending to a single-linked list is | 1305 | * Append to device list. Prepending to a single-linked list is |