Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/block/ddisk/ddisk.c

    r09ab0a9a r4f87a85a  
    319319        errno_t rc;
    320320        ddf_fun_t *fun = NULL;
     321        bool bound = false;
    321322
    322323        fun = ddf_fun_create(ddisk->dev, fun_exposed, DDISK_FUN_NAME);
     
    337338        }
    338339
    339         ddf_fun_add_to_category(fun, "disk");
     340        bound = true;
     341
     342        rc = ddf_fun_add_to_category(fun, "disk");
     343        if (rc != EOK) {
     344                ddf_msg(LVL_ERROR, "Failed adding function %s to category "
     345                    "'disk': %s.\n", DDISK_FUN_NAME, str_error(rc));
     346                goto error;
     347        }
    340348        ddisk->fun = fun;
    341349
    342350        return EOK;
    343351error:
     352        if (bound)
     353                ddf_fun_unbind(fun);
    344354        if (fun != NULL)
    345355                ddf_fun_destroy(fun);
Note: See TracChangeset for help on using the changeset viewer.