Changeset 412a31e in mainline for uspace/lib/libc/generic/vfs/vfs.c


Ignore:
Timestamp:
2008-07-07T12:19:07Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b7f9087
Parents:
b5a1730
Message:

Fix missing rc check in libc _open()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/vfs/vfs.c

    rb5a1730 r412a31e  
    223223        futex_up(&vfs_phone_futex);
    224224        free(pa);
     225
     226        if (rc != EOK) return (int) rc;
    225227        return (int) IPC_GET_ARG1(answer);
    226228}
Note: See TracChangeset for help on using the changeset viewer.