Issue #928 - work around over-zealous uninitialized check in chromebrew gcc.

This commit is contained in:
Eric Hawicz
2026-06-21 19:25:37 -04:00
parent d9d8cab822
commit e1812074fa
+1 -1
View File
@@ -369,7 +369,7 @@ int json_object_put(struct json_object *jso)
while (slots_left > 0) while (slots_left > 0)
{ {
size_t cur_slot = slots_left - 1; size_t cur_slot = slots_left - 1;
json_object *child; json_object *child = NULL;
// First, clear the slot in the current jso object // First, clear the slot in the current jso object
// The slot itself will be freed when jso is freed, or // The slot itself will be freed when jso is freed, or