summaryrefslogtreecommitdiffstats
path: root/lasso
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2006-10-28 17:00:38 +0000
committerFrederic Peters <fpeters@entrouvert.com>2006-10-28 17:00:38 +0000
commit73a5ea2ba1185d7c258cf7ee4cc1333f4f8b5e41 (patch)
tree1c763d80227acdfe42d49f6fab2519b33194c927 /lasso
parent45d59d6c005dfeda98bd5b1cfebd44f359b5e539 (diff)
downloadlasso-73a5ea2ba1185d7c258cf7ee4cc1333f4f8b5e41.tar.gz
lasso-73a5ea2ba1185d7c258cf7ee4cc1333f4f8b5e41.tar.xz
lasso-73a5ea2ba1185d7c258cf7ee4cc1333f4f8b5e41.zip
initialize private_key_file and certificate_file properly
Diffstat (limited to 'lasso')
-rw-r--r--lasso/xml/saml-2.0/saml2_assertion.c2
-rw-r--r--lasso/xml/saml-2.0/samlp2_request_abstract.c2
-rw-r--r--lasso/xml/saml-2.0/samlp2_status_response.c2
3 files changed, 6 insertions, 0 deletions
diff --git a/lasso/xml/saml-2.0/saml2_assertion.c b/lasso/xml/saml-2.0/saml2_assertion.c
index 1e23a80a..ae286f6f 100644
--- a/lasso/xml/saml-2.0/saml2_assertion.c
+++ b/lasso/xml/saml-2.0/saml2_assertion.c
@@ -138,6 +138,8 @@ instance_init(LassoSaml2Assertion *node)
node->ID = NULL;
node->IssueInstant = NULL;
node->sign_type = LASSO_SIGNATURE_TYPE_NONE;
+ node->private_key_file = NULL;
+ node->certificate_file = NULL;
}
static void
diff --git a/lasso/xml/saml-2.0/samlp2_request_abstract.c b/lasso/xml/saml-2.0/samlp2_request_abstract.c
index cfa7a1f7..f01209f3 100644
--- a/lasso/xml/saml-2.0/samlp2_request_abstract.c
+++ b/lasso/xml/saml-2.0/samlp2_request_abstract.c
@@ -120,6 +120,8 @@ instance_init(LassoSamlp2RequestAbstract *node)
node->Destination = NULL;
node->Consent = NULL;
node->sign_type = LASSO_SIGNATURE_TYPE_NONE;
+ node->private_key_file = NULL;
+ node->certificate_file = NULL;
}
static void
diff --git a/lasso/xml/saml-2.0/samlp2_status_response.c b/lasso/xml/saml-2.0/samlp2_status_response.c
index 5cf70a1d..7a2b8136 100644
--- a/lasso/xml/saml-2.0/samlp2_status_response.c
+++ b/lasso/xml/saml-2.0/samlp2_status_response.c
@@ -154,6 +154,8 @@ instance_init(LassoSamlp2StatusResponse *node)
node->Destination = NULL;
node->Consent = NULL;
node->sign_type = LASSO_SIGNATURE_TYPE_NONE;
+ node->private_key_file = NULL;
+ node->certificate_file = NULL;
}
static void