bindings: python: remove a redundant if
authorBartosz Golaszewski <bartekgola@gmail.com>
Mon, 30 Jul 2018 12:49:17 +0000 (14:49 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Tue, 31 Jul 2018 12:30:46 +0000 (14:30 +0200)
We don't need to check if bulk is NULL in gpiod_Chip_find_lines()
before returning it.

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/python/gpiodmodule.c

index 8e576a9fc0d1f25ff91332e376d4473406ccf397..3978490d2b6d28d6ed802b39da53a76058b7678f 100644 (file)
@@ -1663,9 +1663,6 @@ gpiod_Chip_find_lines(gpiod_ChipObject *self, PyObject *args)
 
        bulk = gpiod_ListToLineBulk(lines);
        Py_DECREF(lines);
-       if (!bulk)
-               return NULL;
-
        return bulk;
 }