diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2009-03-27 15:05:33 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2009-03-27 15:05:33 +0000 |
| commit | e59c45e5981d4eec1984c03754d1f15529aa590d (patch) | |
| tree | d626787c1be71c9feb5494e2acbf95be8fb793e0 | |
| parent | c9011fb16b6d03228b7bb53df9712dffa64d2b41 (diff) | |
Add missing intializations
* initialize local variables.
| -rw-r--r-- | lasso/id-ff/provider.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/id-ff/provider.c b/lasso/id-ff/provider.c index 81b9125d..fff9edb0 100644 --- a/lasso/id-ff/provider.c +++ b/lasso/id-ff/provider.c @@ -1072,8 +1072,8 @@ lasso_provider_verify_saml_signature(LassoProvider *provider, { const char *id_attribute_name = NULL; const xmlChar *node_ns = NULL; - xmlSecKey *public_key; - xmlSecKeysMngr *keys_manager; + xmlSecKey *public_key = NULL; + xmlSecKeysMngr *keys_manager = NULL; int rc = 0; lasso_bad_param(PROVIDER, provider); |
