Fix uninitialized variable.

https://fedorahosted.org/freeipa/ticket/1118
This commit is contained in:
Simo Sorce 2011-03-24 14:25:46 -04:00 committed by Rob Crittenden
parent 0693b67f20
commit 8308efeb14

View File

@ -260,7 +260,7 @@ static Slapi_Value **encrypt_encode_key(struct ipapwd_krbcfg *krbcfg,
int krbTicketFlags;
struct berval *bval = NULL;
Slapi_Value **svals = NULL;
krb5_principal princ;
krb5_principal princ = NULL;
krb5_error_code krberr;
krb5_data pwd;
struct ipapwd_keyset *kset = NULL;