projects
/
qemu-gpiodev
/
libgpiod.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1d87088
)
bindings: python: remove a redundant if
author
Bartosz Golaszewski
<bartekgola@gmail.com>
Mon, 30 Jul 2018 12:49:17 +0000
(14:49 +0200)
committer
Bartosz 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
patch
|
blob
|
history
diff --git
a/bindings/python/gpiodmodule.c
b/bindings/python/gpiodmodule.c
index 8e576a9fc0d1f25ff91332e376d4473406ccf397..3978490d2b6d28d6ed802b39da53a76058b7678f 100644
(file)
--- a/
bindings/python/gpiodmodule.c
+++ b/
bindings/python/gpiodmodule.c
@@
-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;
}