Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/src/recognise.c

    r8d2dd7f2 r33b8d024  
    6060 * @return Error code.
    6161 */
    62 static int usb_add_match_id(match_id_list_t *matches, int score,
    63     const char *match_str)
     62static errno_t usb_add_match_id(match_id_list_t *matches, int score,
     63    char *match_str)
    6464{
    6565        assert(matches);
     
    8888                char *str = NULL; \
    8989                int __rc = asprintf(&str, format, ##__VA_ARGS__); \
    90                 if (__rc > 0) { \
    91                         __rc = usb_add_match_id((match_ids), (score), str); \
    92                 } \
    93                 if (__rc != EOK) { \
    94                         free(str); \
    95                         return __rc; \
     90                if (__rc >= 0) { \
     91                        errno_t __rc = usb_add_match_id((match_ids), (score), str); \
     92                        if (__rc != EOK) { \
     93                                free(str); \
     94                                return __rc; \
     95                        } \
     96                } else { \
     97                        return ENOMEM; \
    9698                } \
    9799        } while (0)
     
    106108 * @retval ENOENT Device class is not "use interface".
    107109 */
    108 int usb_device_create_match_ids_from_interface(
     110errno_t usb_device_create_match_ids_from_interface(
    109111    const usb_standard_device_descriptor_t *desc_device,
    110112    const usb_standard_interface_descriptor_t *desc_interface,
     
    218220 * @return Error code.
    219221 */
    220 int usb_device_create_match_ids_from_device_descriptor(
     222errno_t usb_device_create_match_ids_from_device_descriptor(
    221223    const usb_standard_device_descriptor_t *device_descriptor,
    222224    match_id_list_t *matches)
     
    262264 * @return Error code.
    263265 */
    264 int usb_device_create_match_ids(usb_pipe_t *ctrl_pipe,
     266errno_t usb_device_create_match_ids(usb_pipe_t *ctrl_pipe,
    265267    match_id_list_t *matches)
    266268{
    267269        assert(ctrl_pipe);
    268         int rc;
     270        errno_t rc;
    269271        /*
    270272         * Retrieve device descriptor and add matches from it.
Note: See TracChangeset for help on using the changeset viewer.