Changeset 353f8cc in mainline for uspace/srv/audio/hound/iface.c


Ignore:
Timestamp:
2013-04-05T18:12:23Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fb14905
Parents:
2373ba7
Message:

hound: make sure all streams are gone before removing context

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/audio/hound/iface.c

    r2373ba7 r353f8cc  
    6969        if (!ctx)
    7070                return EINVAL;
    71         hound_remove_ctx(server, ctx);
     71        int ret = hound_remove_ctx(server, ctx);
     72        if (ret != EOK)
     73                return ret;
    7274        hound_ctx_destroy(ctx);
    7375        log_info("%s: %p, %#x", __FUNCTION__, server, id);
Note: See TracChangeset for help on using the changeset viewer.