cc_seq_fetch_NCs_end and cc_seq_fetch_creds_end should try to set their
iterator inputs to NULL. Fixed code to assign the inputs to NULL rather
than the temporary variables. (Not sure why the previous code was
even compiling on the Mac.)
ticket: new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20274
dc483132-0cff-0310-8789-
dd5450dbe970
err = ccapi_ccache_iterator_release (iterator);
}
+ if (!err) {
+ *io_iterator = NULL;
+ }
+
return cci_remap_error (err);
}
}
if (!err) {
- *iterator = NULL;
+ *io_iterator = NULL;
}
return cci_remap_error (err);