Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/audio/hdaudio/hdaudio.c

    r3fafe5e0 r4f87a85a  
    151151{
    152152        ddf_fun_t *fun_pcm = NULL;
     153        bool bound = false;
    153154        hda_t *hda = NULL;
    154155        hw_res_list_parsed_t res;
     
    299300        }
    300301
    301         ddf_fun_add_to_category(fun_pcm, "audio-pcm");
     302        bound = true;
     303
     304        rc = ddf_fun_add_to_category(fun_pcm, "audio-pcm");
     305        if (rc != EOK) {
     306                ddf_msg(LVL_ERROR, "Failed adding function to audio-pcm category.");
     307                goto error;
     308        }
    302309
    303310        hw_res_list_parsed_clean(&res);
    304311        return EOK;
    305312error:
     313        if (bound)
     314                ddf_fun_unbind(fun_pcm);
    306315        if (fun_pcm != NULL)
    307316                ddf_fun_destroy(fun_pcm);
Note: See TracChangeset for help on using the changeset viewer.