summaryrefslogtreecommitdiff
path: root/tunnel.c
diff options
context:
space:
mode:
Diffstat (limited to 'tunnel.c')
-rw-r--r--tunnel.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tunnel.c b/tunnel.c
index 524fd43..4a6c409 100644
--- a/tunnel.c
+++ b/tunnel.c
@@ -67,6 +67,9 @@ tunnel_create(const char *name, struct blob_attr *attr)
struct device *dev;
tun = calloc(1, sizeof(*tun));
+ if (!tun)
+ return NULL;
+
dev = &tun->dev;
device_init(dev, &tunnel_device_type, name);
tun->set_state = dev->set_state;