1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3: VFS: Fix memory leak in vfs_ceph.

Centralize error handling.

https://bugzilla.samba.org/show_bug.cgi?id=13424

Signed-off-by: Vandana Rungta <vrungta@amazon.com>
Reviewed-by: Jeremy Allison <jra@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Wed May  9 04:28:11 CEST 2018 on sn-devel-144
This commit is contained in:
Vandana Rungta 2018-05-08 11:27:47 -07:00 committed by Jeremy Allison
parent 233d22138b
commit 4e78aeedb8

View File

@ -1211,30 +1211,31 @@ static struct smb_filename *cephwrap_realpath(struct vfs_handle_struct *handle,
TALLOC_CTX *ctx,
const struct smb_filename *smb_fname)
{
char *result;
char *result = NULL;
const char *path = smb_fname->base_name;
size_t len = strlen(path);
struct smb_filename *result_fname = NULL;
int r = -1;
result = SMB_MALLOC_ARRAY(char, PATH_MAX+1);
if (len && (path[0] == '/')) {
int r = asprintf(&result, "%s", path);
if (r < 0) return NULL;
r = asprintf(&result, "%s", path);
} else if ((len >= 2) && (path[0] == '.') && (path[1] == '/')) {
if (len == 2) {
int r = asprintf(&result, "%s",
r = asprintf(&result, "%s",
handle->conn->connectpath);
if (r < 0) return NULL;
} else {
int r = asprintf(&result, "%s/%s",
r = asprintf(&result, "%s/%s",
handle->conn->connectpath, &path[2]);
if (r < 0) return NULL;
}
} else {
int r = asprintf(&result, "%s/%s",
r = asprintf(&result, "%s/%s",
handle->conn->connectpath, path);
if (r < 0) return NULL;
}
if (r < 0) {
return NULL;
}
DBG_DEBUG("[CEPH] realpath(%p, %s) = %s\n", handle, path, result);
result_fname = synthetic_smb_fname(ctx,
result,