search for: 910ec34

Displaying 1 result from an estimated 1 matches for "910ec34".

Did you mean: 910034
2009 Nov 09
1
[PATCH libguestfs] avoid "syntax-check" failure
...ect: [PATCH libguestfs] avoid "syntax-check" failure * fuse/guestmount.c (fg_readlink): Don't declare "r" as const, as it is freed. --- fuse/guestmount.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fuse/guestmount.c b/fuse/guestmount.c index 910ec34..04a6a29 100644 --- a/fuse/guestmount.c +++ b/fuse/guestmount.c @@ -339,7 +339,7 @@ fg_access (const char *path, int mask) static int fg_readlink (const char *path, char *buf, size_t size) { - const char *r; + char *r; int free_it = 0; r = rlc_lookup (path); @@ -361,7 +361,7 @@ fg_readl...