interface: don't segfault with an unknown protocol
authorSteven Barth <steven@midlink.org>
Wed, 28 Sep 2011 11:02:04 +0000 (11:02 +0000)
committerSteven Barth <steven@midlink.org>
Wed, 28 Sep 2011 11:02:04 +0000 (11:02 +0000)
interface.c

index a5675f7..60efc7e 100644 (file)
@@ -241,7 +241,8 @@ interface_alloc(const char *name, struct blob_attr *attr)
 
        proto_attach_interface(iface, proto_name);
 
-       if (!(iface->proto_handler->flags & PROTO_FLAG_NODEV) &&
+       if (iface->proto_handler &&
+           !(iface->proto_handler->flags & PROTO_FLAG_NODEV) &&
            (cur = tb[IFACE_ATTR_IFNAME])) {
                dev = device_get(blobmsg_data(cur), true);
                if (dev)