bindings: cxx: do not initialize a chip's shared_ptr with nullptr
authorPatrick Boettcher <p@yai.se>
Sun, 3 Feb 2019 12:29:14 +0000 (13:29 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 4 Feb 2019 09:01:44 +0000 (10:01 +0100)
commite474b7792adce5ffa81e964ffd5a6302388c8b3a
treeee42391e46071aee5da517259e8d73b1e204c9ea
parentf3637ade7908be8a7e44b029d2a4d54e830a809a
bindings: cxx: do not initialize a chip's shared_ptr with nullptr

A shared_ptr initialized with nullptr will still call the deleter which
causes a NULL-pointer dereference if we create a chip_iter when there
are no GPIO chips in the system.

Only initialize the current chip object in chip_iter if
gpiod_chip_iter_next_noclose() returned a valid pointer.

Signed-off-by: Patrick Boettcher <p@yai.se>
[Bartosz:
  - tweaked the commit message
  - use std::move when assigning the chip object]
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
bindings/cxx/iter.cpp