search for: usbnewexactmatch

Displaying 1 result from an estimated 1 matches for "usbnewexactmatch".

Did you mean: usbnewexactmatcher
2011 Aug 27
1
[PATCH 3/3] Fix pointer check on wrong variable
...Jarosch <thomas.jarosch at intra2net.com> --- drivers/usb-common.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb-common.c b/drivers/usb-common.c index e51f3cf..e459872 100644 --- a/drivers/usb-common.c +++ b/drivers/usb-common.c @@ -116,7 +116,7 @@ int USBNewExactMatcher(USBDeviceMatcher_t **matcher, USBDevice_t *hd) USBDevice_t *data; m = malloc(sizeof(*m)); - if (!matcher) { + if (!m) { return -1; } -- 1.7.4.4