diff options
author | Jeff Bonwick <Jeff.Bonwick@Sun.COM> | 2010-02-23 12:12:25 -0800 |
---|---|---|
committer | Jeff Bonwick <Jeff.Bonwick@Sun.COM> | 2010-02-23 12:12:25 -0800 |
commit | f0ba89be159095fb15265a5e1cd79e09e5e44ef9 (patch) | |
tree | 4614c03f0958df45cef0edd3ab590fb660f0e09b /usr/src/cmd/ztest/ztest.c | |
parent | 871a950040e978c9b1e6ea64083ea5791a6ef9f7 (diff) | |
download | illumos-joyent-f0ba89be159095fb15265a5e1cd79e09e5e44ef9.tar.gz |
6914746 sprintf_blkptr() causes NULL pointer dereference
Diffstat (limited to 'usr/src/cmd/ztest/ztest.c')
-rw-r--r-- | usr/src/cmd/ztest/ztest.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/usr/src/cmd/ztest/ztest.c b/usr/src/cmd/ztest/ztest.c index 24464b4594..e231292ae6 100644 --- a/usr/src/cmd/ztest/ztest.c +++ b/usr/src/cmd/ztest/ztest.c @@ -4720,11 +4720,12 @@ ztest_run_zdb(char *pool) isa = strdup(isa); /* LINTED */ (void) sprintf(bin, - "/usr/sbin%.*s/zdb -bcc%s%s -U /tmp/zpool.cache %s", + "/usr/sbin%.*s/zdb -bcc%s%s -U %s %s", isalen, isa, zopt_verbose >= 3 ? "s" : "", zopt_verbose >= 4 ? "v" : "", + spa_config_path, pool); free(isa); @@ -5388,18 +5389,18 @@ main(int argc, char **argv) (void) setvbuf(stdout, NULL, _IOLBF, 0); - /* Override location of zpool.cache */ - spa_config_path = "/tmp/zpool.cache"; - ztest_random_fd = open("/dev/urandom", O_RDONLY); process_options(argc, argv); + /* Override location of zpool.cache */ + (void) asprintf((char **)&spa_config_path, "%s/zpool.cache", zopt_dir); + /* * Blow away any existing copy of zpool.cache */ if (zopt_init != 0) - (void) remove("/tmp/zpool.cache"); + (void) remove(spa_config_path); shared_size = sizeof (*zs) + zopt_datasets * sizeof (ztest_ds_t); |