Browse Source

Pretend there are no virtio devices when memory allocation failed for
the control structures.

Signed-off-by: golubovsky <golubovsky@gmail.com>

golubovsky 7 years ago
parent
commit
33bd31a75b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      sys/src/9/port/virtio_lib.c

+ 1 - 0
sys/src/9/port/virtio_lib.c

@@ -408,6 +408,7 @@ virtiosetup()
 	cvq = mallocz(nvq * sizeof(Vqctl *), 1);
 	if(cvq == nil) {
 		print("virtiosetup: failed to allocate control structures\n");
+		nvq = 0;
 		return;
 	}
 	initvdevs(cvq);