|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] xenbus: fix possible crash in xenbus_uevent_backend
Fix possible NULL pointer crash in xenbus_uevent_backend().
The variable to check for should probably be bus.
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
Index: linux-3.0-rc7-xen-kexec/drivers/xen/xenbus/xenbus_probe_backend.c
===================================================================
--- linux-3.0-rc7-xen-kexec.orig/drivers/xen/xenbus/xenbus_probe_backend.c
+++ linux-3.0-rc7-xen-kexec/drivers/xen/xenbus/xenbus_probe_backend.c
@@ -104,7 +104,7 @@ static int xenbus_uevent_backend(struct
xdev = to_xenbus_device(dev);
bus = container_of(xdev->dev.bus, struct xen_bus_type, bus);
- if (xdev == NULL)
+ if (bus == NULL)
return -ENODEV;
/* stuff we want to pass to /sbin/hotplug */
Index: linux-3.0-rc7-xen-kexec/include/linux/compiler.h
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH] xenbus: fix possible crash in xenbus_uevent_backend,
Olaf Hering <=
|
|
|
|
|