瀏覽代碼

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

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

golubovsky 8 年之前
父節點
當前提交
e700975e7a
共有 1 個文件被更改,包括 1 次插入0 次删除
  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);