summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lasso/id-ff/profile_context.c6
-rw-r--r--lasso/id-ff/profile_context.h1
2 files changed, 5 insertions, 2 deletions
diff --git a/lasso/id-ff/profile_context.c b/lasso/id-ff/profile_context.c
index 003a1fbc..b2bae29a 100644
--- a/lasso/id-ff/profile_context.c
+++ b/lasso/id-ff/profile_context.c
@@ -147,6 +147,7 @@ lasso_profile_context_finalize(LassoProfileContext *ctx)
g_free(ctx->remote_providerID);
g_free(ctx->msg_url);
g_free(ctx->msg_body);
+ g_free(ctx->msg_relayState);
g_free (ctx->private);
@@ -182,8 +183,9 @@ lasso_profile_context_instance_init(GTypeInstance *instance,
ctx->remote_providerID = NULL;
- ctx->msg_url = NULL;
- ctx->msg_body = NULL;
+ ctx->msg_url = NULL;
+ ctx->msg_body = NULL;
+ ctx->msg_relayState = NULL;
}
static void
diff --git a/lasso/id-ff/profile_context.h b/lasso/id-ff/profile_context.h
index c9ba4f9b..c216e90f 100644
--- a/lasso/id-ff/profile_context.h
+++ b/lasso/id-ff/profile_context.h
@@ -84,6 +84,7 @@ struct _LassoProfileContext {
gchar *msg_url;
gchar *msg_body;
+ gchar *msg_relayState;
/*< private >*/
LassoProfileContextPrivate *private;