Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/src/pipesinit.c

    r2c2cbcf rfa0f53b  
    365365        pipe->direction = direction;
    366366        pipe->refcount = 0;
    367         pipe->refcount_soft = 0;
    368367        pipe->auto_reset_halt = false;
    369368
     
    420419        int rc;
    421420
    422         usb_pipe_start_long_transfer(pipe);
     421        rc = usb_pipe_start_long_transfer(pipe);
     422        if (rc != EOK) {
     423                return rc;
     424        }
     425
    423426
    424427        uint8_t dev_descr_start[CTRL_PIPE_MIN_PACKET_SIZE];
Note: See TracChangeset for help on using the changeset viewer.