Free allocated memory before return.
Signed-off-by: Li Wang <liwang@ubuntukylin.com>
Reviewed-by: Sage Weil <sage@inktank.com>
int chain_flistxattr(int fd, char *names, size_t len) {
int r;
+ char *p;
+ const char * end;
+ char *dest;
+ char *dest_end;
if (!len)
return sys_flistxattr(fd, names, len) * 2;
r = sys_flistxattr(fd, full_buf, total_len);
if (r < 0)
- return r;
+ goto done;
- char *p = full_buf;
- const char *end = full_buf + r;
- char *dest = names;
- char *dest_end = names + len;
+ p = full_buf;
+ end = full_buf + r;
+ dest = names;
+ dest_end = names + len;
while (p < end) {
char name[CHAIN_XATTR_MAX_NAME_LEN * 2 + 16];