trying to strdup() it. [PR#341, PR#394]
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10001
dc483132-0cff-0310-8789-
dd5450dbe970
+Wed Mar 12 01:19:51 1997 Theodore Y. Ts'o <tytso@mit.edu>
+
+ * loadv4.c (argv): Check to see if the global_param's stash file
+ is non-NULL before trying to strdup() it. [PR#341, PR#394]
+
Tue Feb 4 21:17:09 1997 Tom Yu <tlyu@mit.edu>
* Makefile.in:
dbname = global_params.dbname;
mkey_name = global_params.mkey_name;
master_keyblock.enctype = global_params.enctype;
- stash_file = strdup(global_params.stash_file);
+ if (global_params.stash_file)
+ stash_file = strdup(global_params.stash_file);
rblock.max_life = global_params.max_life;
rblock.max_rlife = global_params.max_rlife;
rblock.expiration = global_params.expiration;