Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/map.c
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ bool map_insert(map_t obj, const void *key, const void *val)
return false;

rb_path_entry_t path[RB_MAX_DEPTH];
rb_path_entry_t *pathp;
rb_path_entry_t *pathp = NULL;

/* Single traversal to check existence and get insertion point */
const map_node_t *existing = rb_insert_unique(obj, key, path, &pathp);
Expand Down
Loading