diff options
author | Wim Taymans <wtaymans@redhat.com> | 2019-02-14 17:45:42 +0100 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2019-02-14 17:45:42 +0100 |
commit | 755d7ca329e5d6c656047a50018af5747f6040d2 (patch) | |
tree | 5ad24538fa3c57a0ab971c94bf964d5ed258f3f5 | |
parent | e9bedae5faec9582f47d23e442e22ce256826e77 (diff) |
client-node: handle NULL info in update
-rw-r--r-- | src/modules/module-client-node/client-node.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/module-client-node/client-node.c b/src/modules/module-client-node/client-node.c index b46e9cb2..9cc64ca4 100644 --- a/src/modules/module-client-node/client-node.c +++ b/src/modules/module-client-node/client-node.c @@ -1029,7 +1029,7 @@ client_node_port_update(void *data, n_params, params, info); - if (this->callbacks && this->callbacks->port_info) + if (this->callbacks && this->callbacks->port_info && info) this->callbacks->port_info(this->callbacks_data, direction, port_id, info); } } |