kim_options_copy should allow in_options to be KIM_OPTIONS_DEFAULT
authorAlexandra Ellwood <lxs@mit.edu>
Thu, 9 Oct 2008 01:05:08 +0000 (01:05 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Thu, 9 Oct 2008 01:05:08 +0000 (01:05 +0000)
(Don't error on NULL in_options)

ticket: new

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20848 dc483132-0cff-0310-8789-dd5450dbe970

src/kim/lib/kim_options.c

index 06c25ae88132a8a4824ee6c9aaead7eed3dce994..08f1ddb6fc48534aa8dcd5935940a9f2fa492f8d 100644 (file)
@@ -116,7 +116,6 @@ kim_error kim_options_copy (kim_options *out_options,
     kim_options options = KIM_OPTIONS_DEFAULT;
     
     if (!err && !out_options) { err = check_error (KIM_NULL_PARAMETER_ERR); }
-    if (!err && !in_options ) { err = check_error (KIM_NULL_PARAMETER_ERR); }
     
     if (!err && in_options != KIM_OPTIONS_DEFAULT) {
         err = kim_options_allocate (&options);