Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 307363 Details for
Bug 410431
app-crypt/mit-krb5-1.10.1-r1 - fix for uninitialized values
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Initializations for the uninitialized values.
file_410431.txt (text/plain), 956 bytes, created by
Alexander Adam
on 2012-04-01 12:35:41 UTC
(
hide
)
Description:
Initializations for the uninitialized values.
Filename:
MIME Type:
Creator:
Alexander Adam
Created:
2012-04-01 12:35:41 UTC
Size:
956 bytes
patch
obsolete
>--- 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/lib/krb5/unicode/ucstr.c >+++ b/src/lib/krb5/unicode/ucstr.c >@@ -109,7 +109,7 @@ > krb5_data ** newdataptr, > unsigned flags) > { >- int i, j, len, clen, outpos, ucsoutlen, outsize; >+ int i, j, len, clen, outpos = 0, ucsoutlen, outsize; > char *out = NULL, *outtmp, *s; > krb5_ucs4 *ucs = NULL, *p, *ucsout = NULL; > krb5_data *newdata;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 410431
: 307363 |
307599