VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / usb / core / config.c
index 06f667d..ae7ec74 100644 (file)
@@ -414,7 +414,7 @@ void usb_destroy_configuration(struct usb_device *dev)
                        kfree(dev->rawdescriptors[i]);
 
                kfree(dev->rawdescriptors);
-               dev->rawdescriptors = 0;
+               dev->rawdescriptors = NULL;
        }
 
        for (c = 0; c < dev->descriptor.bNumConfigurations; c++) {
@@ -426,7 +426,7 @@ void usb_destroy_configuration(struct usb_device *dev)
                }
        }
        kfree(dev->config);
-       dev->config = 0;
+       dev->config = NULL;
 }