Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/udebug/udebug_ipc.c

    rb2a1fd92 r63e27ef  
    7272{
    7373        int rc;
    74         bool active;
    75 
    76         rc = udebug_begin(call, &active);
    77         if (rc != EOK) {
     74
     75        rc = udebug_begin(call);
     76        if (rc < 0) {
    7877                IPC_SET_RETVAL(call->data, rc);
    7978                ipc_answer(&TASK->kb.box, call);
     
    8584         * send a reply.
    8685         */
    87         if (active) {
    88                 IPC_SET_RETVAL(call->data, EOK);
     86        if (rc != 0) {
     87                IPC_SET_RETVAL(call->data, 0);
    8988                ipc_answer(&TASK->kb.box, call);
    9089        }
Note: See TracChangeset for help on using the changeset viewer.