* fcc_init.c (krb5_fcc_initialize())
Initialize kret before returning it.
* fcc_maybe.c (fcc_lock_file()) Initialize st before returning it.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5098
dc483132-0cff-0310-8789-
dd5450dbe970
+Thu Mar 09 18:43:10 1995 Chris Provenzano (proven@mit.edu)
+
+ * fcc_destry.c (krb5_fcc_destroy())
+ * fcc_init.c (krb5_fcc_initialize())
+ Initialize kret before returning it.
+
+ * fcc_maybe.c (fcc_lock_file()) Initialize st before returning it.
+
Tue Mar 7 19:54:48 1995 Mark Eichin <eichin@cygnus.com>
* configure.in: take out ISODE_DEFS.
unsigned int wlen;
char zeros[BUFSIZ];
register int ret;
- krb5_error_code kret;
+ krb5_error_code kret = 0;
if (OPENCLOSE(id)) {
krb5_ccache id;
krb5_principal princ;
{
- krb5_error_code kret;
+ krb5_error_code kret = 0;
int reti;
MAYBE_OPEN(context, id, FCC_OPEN_AND_ERASE);
int fd;
int lockunlock;
{
- krb5_error_code st;
+ krb5_error_code st = 0;
#ifdef POSIX_FILE_LOCKS
st = fcc_lock_file_posix(data, fd, lockunlock);
if (st != EINVAL) {