[Nut-upsdev] [PATCH 3/3] Fix pointer check on wrong variable

Thomas Jarosch thomas.jarosch at intra2net.com
Sat Aug 27 23:03:30 UTC 2011


Credit goess to "cppcheck"

Signed-off-by: Thomas 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




More information about the Nut-upsdev mailing list