linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / drivers / input / evbug.c
index 07358fb..d782893 100644 (file)
@@ -49,8 +49,9 @@ static struct input_handle *evbug_connect(struct input_handler *handler, struct
 {
        struct input_handle *handle;
 
-       if (!(handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL)))
+       if (!(handle = kmalloc(sizeof(struct input_handle), GFP_KERNEL)))
                return NULL;
+       memset(handle, 0, sizeof(struct input_handle));
 
        handle->dev = dev;
        handle->handler = handler;