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:
5fd3712
)
core: reuse the err_close_fd label in gpiod_chip_open()
author
Bartosz Golaszewski
<bgolaszewski@baylibre.com>
Thu, 13 Feb 2020 14:13:42 +0000
(15:13 +0100)
committer
Bartosz Golaszewski
<bgolaszewski@baylibre.com>
Thu, 13 Feb 2020 14:13:42 +0000
(15:13 +0100)
Remove redundant resource cleanup in error path after is_gpiochip_cdev()
and reuse the already existing label.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
lib/core.c
patch
|
blob
|
history
diff --git
a/lib/core.c
b/lib/core.c
index ed6301202784361cd388ec237af19f822102ff2c..f704b44b245cc8699a96d7b035cc890f64a071ac 100644
(file)
--- a/
lib/core.c
+++ b/
lib/core.c
@@
-179,10
+179,8
@@
struct gpiod_chip *gpiod_chip_open(const char *path)
* We were able to open the file but is it really a gpiochip character
* device?
*/
- if (!is_gpiochip_cdev(path)) {
- close(fd);
- return NULL;
- }
+ if (!is_gpiochip_cdev(path))
+ goto err_close_fd;
chip = malloc(sizeof(*chip));
if (!chip)