summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/res_parking.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/res/res_parking.c b/res/res_parking.c
index c36d558b6..c60fdd61a 100644
--- a/res/res_parking.c
+++ b/res/res_parking.c
@@ -890,11 +890,10 @@ static void generate_or_link_lots_to_configs(void)
struct parking_lot_cfg *lot_cfg;
struct ao2_iterator iter;
- for (iter = ao2_iterator_init(cfg->parking_lots, 0); (lot_cfg = ao2_iterator_next(&iter)); ao2_ref(lot_cfg, -1)) {
- RAII_VAR(struct parking_lot *, lot, NULL, ao2_cleanup);
- lot = parking_lot_build_or_update(lot_cfg, 0);
+ iter = ao2_iterator_init(cfg->parking_lots, 0);
+ for (; (lot_cfg = ao2_iterator_next(&iter)); ao2_ref(lot_cfg, -1)) {
+ ao2_cleanup(parking_lot_build_or_update(lot_cfg, 0));
}
-
ao2_iterator_destroy(&iter);
}