2010-08-01 Robert Millan <rmh@gnu.org>

Prevent accidental use of uninitialized libzfs_handle.
	
	* util/grub-probe.c (main): Move grub_util_init_libzfs() call to ...
	* kern/emu/getroot.c (find_root_device_from_libzfs): ... here.
	* util/misc.c (grub_util_init_libzfs): Make this function idempotent.
This commit is contained in:
Robert Millan 2010-08-01 15:23:44 +02:00
parent ce04ef47e2
commit deb0caa38e
4 changed files with 15 additions and 3 deletions

View file

@ -359,7 +359,6 @@ main (int argc, char *argv[])
set_program_name (argv[0]);
grub_util_init_nls ();
grub_util_init_libzfs ();
/* Check for options. */
while (1)

View file

@ -309,8 +309,11 @@ void
grub_util_init_libzfs (void)
{
#ifdef HAVE_LIBZFS
libzfs_handle = libzfs_init ();
atexit (fini_libzfs);
if (! libzfs_handle)
{
libzfs_handle = libzfs_init ();
atexit (fini_libzfs);
}
#endif
}
#endif