[pacman-dev] [PATCH] Changed implicit NULL check to explicit one, to comply with style guide.

Terry Bolt bolt.terry at gmail.com
Wed Dec 23 00:27:09 UTC 2015


Signed-off-by: Terry Bolt <bolt.terry at gmail.com>
---
 lib/libalpm/diskspace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libalpm/diskspace.c b/lib/libalpm/diskspace.c
index 5bb2173..7ee1289 100644
--- a/lib/libalpm/diskspace.c
+++ b/lib/libalpm/diskspace.c
@@ -62,7 +62,7 @@ static void mount_point_list_free(alpm_list_t *mount_points)
 {
 	alpm_list_t *i;
 
-	for(i = mount_points; i; i = i->next) {
+	for(i = mount_points; i != NULL; i = i->next) {
 		alpm_mountpoint_t *data = i->data;
 		FREE(data->mount_dir);
 	}
-- 
2.6.4


More information about the pacman-dev mailing list