Changeset f58af46 in mainline for generic/src/ipc/sysipc.c


Ignore:
Timestamp:
2006-05-05T15:14:34Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c6c59ccd
Parents:
e8194664
Message:

Implemented mips memcpy (copy from gcc builtin memcpy).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/ipc/sysipc.c

    re8194664 rf58af46  
    309309        call = ipc_call_alloc(0);
    310310        rc = copy_from_uspace(&call->data.args, &data->args, sizeof(call->data.args));
    311         if (rc != 0)
     311        if (rc != 0) {
     312                ipc_call_free(call);
    312313                return (__native) rc;
     314        }
    313315        if (!(res=request_preprocess(call)))
    314316                ipc_call(phone, call);
Note: See TracChangeset for help on using the changeset viewer.