From 7490919a9accc5b9f4721e09fb445d217d691897 Mon Sep 17 00:00:00 2001 From: Shuanglei Tao Date: Fri, 22 Mar 2024 20:57:46 +0800 Subject: [PATCH] player/command: fix udata talloc parent --- player/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/player/command.c b/player/command.c index ed4def2813..36a9afbb29 100644 --- a/player/command.c +++ b/player/command.c @@ -3862,7 +3862,7 @@ static int do_list_udata(int item, int action, void *arg, void *ctx) { struct udata_ctx nctx = *(struct udata_ctx*)ctx; nctx.node = &nctx.node->u.list->values[item]; - nctx.ta_parent = &nctx.node->u.list; + nctx.ta_parent = nctx.node->u.list; return do_op_udata(&nctx, action, arg); } @@ -3888,7 +3888,7 @@ static int mp_property_udata(void *ctx, struct m_property *prop, .mpctx = mpctx, .path = path, .node = &mpctx->command_ctx->udata, - .ta_parent = &mpctx->command_ctx, + .ta_parent = mpctx->command_ctx, }; int ret = do_op_udata(&nctx, action, arg);