From 67f78f680d4b72d24a280be528a00778dcdf28dc Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Sat, 27 Nov 2010 17:39:02 -0200 Subject: plugins: explicitly compare pointers to NULL This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // --- plugins/udev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/udev.c') diff --git a/plugins/udev.c b/plugins/udev.c index 737a6370..255755e2 100644 --- a/plugins/udev.c +++ b/plugins/udev.c @@ -555,7 +555,7 @@ static void remove_modem(struct udev_device *udev_device) DBG("%s", curpath); devpath = g_hash_table_lookup(devpath_list, curpath); - if (!devpath) + if (devpath == NULL) return; modem = find_modem(devpath); @@ -681,7 +681,7 @@ static int udev_init(void) { devpath_list = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free); - if (!devpath_list) { + if (devpath_list == NULL) { ofono_error("Failed to create udev path list"); return -ENOMEM; } -- cgit v1.2.3