From 21d032bf052957b50043f5f3775903d9d7f029c3 Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Mon, 22 Jul 2013 01:15:21 -0700 Subject: gfapi: fix glfs_readlink() glfs_readlink() is supposed to memcpy the buffer pointer returned by syncop_readlink(). Fix it. Change-Id: I5936b07abbd93cf02b354233dc60f6623e30a38b BUG: 953694 Signed-off-by: Anand Avati Reviewed-on: http://review.gluster.org/5439 Reviewed-by: Amar Tumballi Tested-by: Gluster Build System Reviewed-by: Raghavendra Talur --- api/src/glfs-fops.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'api/src/glfs-fops.c') diff --git a/api/src/glfs-fops.c b/api/src/glfs-fops.c index ebd71f088..0e4acb76b 100644 --- a/api/src/glfs-fops.c +++ b/api/src/glfs-fops.c @@ -1203,6 +1203,7 @@ glfs_readlink (struct glfs *fs, const char *path, char *buf, size_t bufsiz) loc_t loc = {0, }; struct iatt iatt = {0, }; int reval = 0; + char *linkval = NULL; __glfs_entry_fs (fs); @@ -1226,7 +1227,11 @@ retry: goto out; } - ret = syncop_readlink (subvol, &loc, &buf, bufsiz); + ret = syncop_readlink (subvol, &loc, &linkval, bufsiz); + if (ret > 0) { + memcpy (buf, linkval, ret); + GF_FREE (linkval); + } ESTALE_RETRY (ret, errno, reval, &loc, retry); out: -- cgit