Skip to content

Commit

Permalink
json: fix copypaste error in cache_json_file() filterx fn
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Szakacs <[email protected]>
  • Loading branch information
alltilla committed Jun 3, 2024
1 parent 4373a1e commit 0e5f591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/json/filterx-cache-json-file.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ _deep_freeze_dict(FilterXFuntionCacheJsonFile *self, FilterXObject *object)
static void
_deep_freeze_list(FilterXFuntionCacheJsonFile *self, FilterXObject *object)
{
struct json_object *jso = filterx_json_object_get_value(object);
struct json_object *jso = filterx_json_array_get_value(object);
guint64 len = json_object_array_length(jso);

for (guint64 i = 0; i < len; i++)
Expand Down

0 comments on commit 0e5f591

Please sign in to comment.