X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fhexdump.c;h=e2d8300e7366b5302f44982c1bf7118f3be58186;hp=ae7df924be1c8c13c6447772d59633dc1b4f47d2;hb=4fbd283c67831d8ef0f0b49045b3369f3ce036db;hpb=887290e949d54c6ac4c9b787231e588f84f2367c diff --git a/daemon/hexdump.c b/daemon/hexdump.c index ae7df92..e2d8300 100644 --- a/daemon/hexdump.c +++ b/daemon/hexdump.c @@ -1,5 +1,5 @@ /* libguestfs - the guestfsd daemon - * Copyright (C) 2009 Red Hat Inc. + * Copyright (C) 2009 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,7 +28,6 @@ char * do_hexdump (char *path) { - int len; char *buf; int r; char *out, *err; @@ -36,15 +35,12 @@ do_hexdump (char *path) NEED_ROOT (NULL); ABS_PATH (path, NULL); - len = strlen (path) + 9; - buf = malloc (len); + buf = sysroot_path (path); if (!buf) { reply_with_perror ("malloc"); return NULL; } - snprintf (buf, len, "/sysroot%s", path); - r = command (&out, &err, "hexdump", "-C", buf, NULL); free (buf); if (r == -1) {