Esempio n. 1
0
guestfs_int_isoinfo *
do_isoinfo (const char *path)
{
  guestfs_int_isoinfo *ret;
  CLEANUP_FREE char *buf = sysroot_path (path);
  if (!buf) {
    reply_with_perror ("malloc");
    return NULL;
  }

  ret = isoinfo (buf);

  return ret;
}
Esempio n. 2
0
guestfs_int_isoinfo *
do_isoinfo_device (const char *device)
{
  return isoinfo (device);
}