Changes in uspace/lib/c/generic/uuid.c [11e4856:a4ee8b3f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/uuid.c
r11e4856 ra4ee8b3f 189 189 int ret = snprintf(str, size, format, uuid->b[0], uuid->b[1], uuid->b[2], uuid->b[3], uuid->b[4], uuid->b[5], uuid->b[6], uuid->b[7], uuid->b[8], uuid->b[9], uuid->b[10], uuid->b[11], uuid->b[12], uuid->b[13], uuid->b[14], uuid->b[15]); 190 190 191 if (ret != 36) { 192 free(str); 191 if (ret != 36) 193 192 return EINVAL; 194 }195 193 196 194 *rstr = str;
Note:
See TracChangeset
for help on using the changeset viewer.