From 2dd5d7125f3b1fef8a6f04344ecc3594f2cbb7c7 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Fri, 29 Oct 2021 13:34:06 -0400 Subject: [PATCH] TT#14008 don't directly use __obj_* calls Change-Id: I578482e8dd32c36c14e85fc5d5ef34b99a5600a8 --- daemon/call.c | 2 +- daemon/websocket.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/call.c b/daemon/call.c index 12ed6d9f7..a1aba82b5 100644 --- a/daemon/call.c +++ b/daemon/call.c @@ -3116,7 +3116,7 @@ static void __call_cleanup(struct call *c) { recording_finish(c); if (c->janus_session) - __obj_put((void *) c->janus_session); + obj_put_o((void *) c->janus_session); c->janus_session = NULL; } diff --git a/daemon/websocket.c b/daemon/websocket.c index c886f61d9..fe795c41a 100644 --- a/daemon/websocket.c +++ b/daemon/websocket.c @@ -589,7 +589,7 @@ static void websocket_conn_cleanup(struct websocket_conn *wc) { gpointer key; while (g_hash_table_iter_next(&iter, &key, NULL)) { janus_detach_websocket(key, wc); - __obj_put(key); + obj_put_o(key); } g_hash_table_destroy(janus_sessions); }