summaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-08-11 17:17:08 +0200
committerJim Meyering <meyering@redhat.com>2009-08-13 14:45:34 +0200
commit1f0810eb3a98cbfd347af59b6b9bc624ddff6028 (patch)
tree45d9599e7d3a156665103acf4c8234d677d2d5fc /daemon
parentd70eb3c45bc93f9e9c7ba735e7209d0ede0e505b (diff)
downloadlibguestfs-1f0810eb3a98cbfd347af59b6b9bc624ddff6028.tar.gz
libguestfs-1f0810eb3a98cbfd347af59b6b9bc624ddff6028.tar.xz
libguestfs-1f0810eb3a98cbfd347af59b6b9bc624ddff6028.zip
generator.ml: constify do_mkdtemp
* daemon/dir.c (do_mkdtemp): Rewrite for a "const" parameter. * src/generator.ml (mkdtemp): Declare parameter to be of type Pathname.
Diffstat (limited to 'daemon')
-rw-r--r--daemon/dir.c25
1 files changed, 8 insertions, 17 deletions
diff --git a/daemon/dir.c b/daemon/dir.c
index ad1c7c98..1ca62868 100644
--- a/daemon/dir.c
+++ b/daemon/dir.c
@@ -185,31 +185,22 @@ do_is_dir (const char *path)
}
char *
-do_mkdtemp (char *template)
+do_mkdtemp (const char *template)
{
- char *r;
-
- NEED_ROOT (return NULL);
- ABS_PATH (template, return NULL);
+ char *writable = strdup (template);
+ if (writable == NULL) {
+ reply_with_perror ("strdup");
+ return NULL;
+ }
CHROOT_IN;
- r = mkdtemp (template);
+ char *r = mkdtemp (writable);
CHROOT_OUT;
if (r == NULL) {
reply_with_perror ("mkdtemp: %s", template);
- return NULL;
+ free (writable);
}
- /* The caller will free template AND try to free the return value,
- * so we must make a copy here.
- */
- if (r == template) {
- r = strdup (template);
- if (r == NULL) {
- reply_with_perror ("strdup");
- return NULL;
- }
- }
return r;
}