search for: strtou64

Displaying 1 result from an estimated 1 matches for "strtou64".

Did you mean: xstrtou64
2013 Jan 24
5
[PATCH] btrfs: Fix btrfs_subvolume_list on F18
...nr_subvolumes); free (ret->guestfs_int_btrfssubvolume_list_val); free (ret); + pcre_free(re); return NULL; } - pos = strstr (line, " path "); - if (pos == NULL) - goto unexpected_output; - pos += 6; + #if __WORDSIZE == 64 + #define STRTOU64 strtoul + #else + #define STRTOU64 strtoull + #endif + + errno = 0; + ret->guestfs_int_btrfssubvolume_list_val[i].btrfssubvolume_id = + STRTOU64(line + ovector[0], NULL, 10); + if (errno == ERANGE) goto unexpected_output; + ret->guestfs_int_btrfssubvolume_list_val[...