Get string from AtomFeed
[cascardo/atompub.git] / src / ctx.c
index 8904b38..e9d940b 100644 (file)
--- a/src/ctx.c
+++ b/src/ctx.c
@@ -23,7 +23,7 @@
 
 struct _atom_ctx
 {
-  GError *error;
+  AtomError *error;
   gpointer config_data;
   AtomBackend *backend;
 };
@@ -35,18 +35,29 @@ atom_ctx_new ()
   ctx = g_slice_new (AtomCtx);
   ctx->error = NULL;
   ctx->config_data = NULL;
+  ctx->backend = NULL;
   return ctx;
 }
 
 void
-atom_error_set (AtomCtx *ctx, GError *error)
+atom_ctx_delete (AtomCtx *ctx)
 {
   if (ctx->error)
-    g_error_free (ctx->error);
+    atom_error_delete (ctx->error);
+  if (ctx->backend)
+    atom_backend_delete (ctx->backend);
+  g_slice_free (AtomCtx, ctx);
+}
+
+void
+atom_error_set (AtomCtx *ctx, AtomError *error)
+{
+  if (ctx->error)
+    atom_error_delete (ctx->error);
   ctx->error = error;
 }
 
-GError *
+AtomError *
 atom_error_get (AtomCtx *ctx)
 {
   return ctx->error;