Remove row from C SDK edge infotable
Hello,
Is there a method to delete a row from infotable 'twInfoTable' on C SDK.
I am able to add row twInfoTable_AddRow, also update specific entry in row using 'twList_ReplaceValue'
But couldn't delete a row.
I tried this example after add 3 rows in my example datatable (the second row exist 😞
twInfoTable* it = TW_GET_PROPERTY(DEFAULT_THING_NAME, "Inventory").infotable;
twInfoTableRow* it_row = twInfoTable_GetEntry(it, 1);
twInfoTableRow_Delete(it_row);
TW_SET_PROPERTY(DEFAULT_THING_NAME, "Inventory", twPrimitive_CreateFromInfoTable(it));I have a classic c error :Segmentation fault (core dumped) at the last line of code.
Thank you for your help.

