[OpenWrt-Devel] [PATCH ubus 11/16] lua: ubus_lua_do_subscribe: fix copy&paste error

Petr Štetiar ynezz at true.cz
Thu Dec 19 17:11:20 EST 2019


Fix copy&paste error in Lua ubus subscriber removal callback.

Addresses-Coverity-ID: 1412311 ("Copy-paste error")
Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 lua/ubus.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lua/ubus.c b/lua/ubus.c
index fb50418d27b0..86dcc5007b3a 100644
--- a/lua/ubus.c
+++ b/lua/ubus.c
@@ -840,8 +840,8 @@ ubus_lua_do_subscribe( struct ubus_context *ctx, lua_State *L, const char* targe
 
 	if( idxremove ){
 		lua_getglobal(L, "__ubus_cb_subscribe");
-		lua_pushvalue(L, idxnotify);
-		sub->rnotify = luaL_ref(L, -2);
+		lua_pushvalue(L, idxremove);
+		sub->rremove = luaL_ref(L, -2);
 		lua_pop(L, 1);
 		sub->s.remove_cb = ubus_sub_remove_handler;
 	}

_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel


More information about the openwrt-devel mailing list