Changeset 057760d3 in mainline


Ignore:
Timestamp:
2009-06-29T16:15:11Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7ece1fbe
Parents:
f49cf64
Message:

avoid unaligned memory access

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_ops.c

    rf49cf64 r057760d3  
    10181018            node->index, false, NULL);
    10191019        ipc_forward_fast(callid, fs_phone, 0, 0, 0, IPC_FF_ROUTE_FROM_ME);
    1020         async_wait_for(msg, &rc);
     1020       
     1021        ipcarg_t rv;
     1022        async_wait_for(msg, &rv);
    10211023        vfs_release_phone(fs_phone);
    10221024
    1023         ipc_answer_0(rid, rc);
     1025        ipc_answer_0(rid, rv);
    10241026
    10251027        vfs_node_put(node);
Note: See TracChangeset for help on using the changeset viewer.