From 7e0f8fd2b58a8cf6774d009faf147c80dd672a9e Mon Sep 17 00:00:00 2001 From: Volker Krause Date: Sun, 3 Mar 2024 09:33:57 +0100 Subject: [PATCH] Increase timezone index to 16bit (#74) This fixes a heap overflow when loading the current Transitous dataset. --- include/nigiri/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nigiri/types.h b/include/nigiri/types.h index 978aa025..d0289108 100644 --- a/include/nigiri/types.h +++ b/include/nigiri/types.h @@ -116,7 +116,7 @@ using trip_id_idx_t = cista::strong; using transport_idx_t = cista::strong; using source_idx_t = cista::strong; using day_idx_t = cista::strong; -using timezone_idx_t = cista::strong; +using timezone_idx_t = cista::strong; using merged_trips_idx_t = cista::strong; using footpath_idx_t = cista::strong;