Explorar el Código

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

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

golubovsky hace 8 años
padre
commit
e700975e7a
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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);