Rev 2673 | Rev 2678 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2673 | Rev 2676 | ||
|---|---|---|---|
| Line 336... | Line 336... | ||
| 336 | /* |
336 | /* |
| 337 | * Receive the write request. |
337 | * Receive the write request. |
| 338 | */ |
338 | */ |
| 339 | ipc_callid_t callid; |
339 | ipc_callid_t callid; |
| 340 | size_t len; |
340 | size_t len; |
| 341 | if (!ipc_data_write_receive(&callid, NULL, &len)) { |
341 | if (!ipc_data_write_receive(&callid, &len)) { |
| 342 | ipc_answer_0(callid, EINVAL); |
342 | ipc_answer_0(callid, EINVAL); |
| 343 | ipc_answer_0(rid, EINVAL); |
343 | ipc_answer_0(rid, EINVAL); |
| 344 | return; |
344 | return; |
| 345 | } |
345 | } |
| 346 | 346 | ||