55 lines
1.4 KiB
Diff
55 lines
1.4 KiB
Diff
--- a/src/slave/kprop.c
|
|
+++ b/src/slave/kprop.c
|
|
@@ -91,7 +91,7 @@ main(argc, argv)
|
|
int argc;
|
|
char **argv;
|
|
{
|
|
- int fd, database_fd, database_size;
|
|
+ int fd = -1, database_fd, database_size;
|
|
krb5_error_code retval;
|
|
krb5_context context;
|
|
krb5_creds *my_creds;
|
|
--- a/src/kadmin/ktutil/ktutil_funcs.c
|
|
+++ b/src/kadmin/ktutil/ktutil_funcs.c
|
|
@@ -64,7 +64,7 @@
|
|
krb5_kt_list *list;
|
|
int idx;
|
|
{
|
|
- krb5_kt_list lp, prev;
|
|
+ krb5_kt_list lp, prev = NULL;
|
|
int i;
|
|
|
|
for (lp = *list, i = 1; lp; prev = lp, lp = lp->next, i++) {
|
|
--- a/src/lib/kadm5/alt_prof.c
|
|
+++ b/src/lib/kadm5/alt_prof.c
|
|
@@ -164,7 +164,7 @@
|
|
char **values;
|
|
char *valp;
|
|
int idx;
|
|
- krb5_boolean val;
|
|
+ krb5_boolean val = 0;
|
|
|
|
kret = krb5_aprof_getvals (acontext, hierarchy, &values);
|
|
if (kret)
|
|
|
|
--- a/src/util/profile/prof_init.c
|
|
+++ b/src/util/profile/prof_init.c
|
|
@@ -255,7 +255,7 @@ copy_vtable_profile(profile_t profile, profile_t *ret_new_profile)
|
|
{
|
|
errcode_t err;
|
|
void *cbdata;
|
|
- profile_t new_profile;
|
|
+ profile_t new_profile = NULL;
|
|
|
|
*ret_new_profile = NULL;
|
|
|
|
--- a/src/tests/asn.1/trval.c 2013-04-12 12:51:36.000000000 -0500
|
|
+++ b/src/tests/asn.1/trval.c 2013-05-24 04:31:14.077036380 -0500
|
|
@@ -404,7 +404,7 @@
|
|
{
|
|
int n;
|
|
int r = 0;
|
|
- int rlen2;
|
|
+ int rlen2 = 0;
|
|
int rlent;
|
|
int save_appl;
|