Fixed Sample POST/JSON
[src/app-framework-binder.git] / src / afb-ws-json1.c
index 05c19e7..b6397af 100644 (file)
@@ -343,7 +343,16 @@ static void wsreq_addref(struct afb_wsreq *wsreq)
 static void wsreq_unref(struct afb_wsreq *wsreq)
 {
        if (--wsreq->refcount == 0) {
+               struct afb_wsreq **prv = &wsreq->aws->requests;
+               while(*prv != NULL) {
+                       if (*prv == wsreq) {
+                               *prv = wsreq->next;
+                               break;
+                       }
+                       prv = &(*prv)->next;
+               }
                afb_context_disconnect(&wsreq->context);
+               json_object_put(wsreq->root);
                free(wsreq->text);
                free(wsreq);
        }