From 57ca4b41a3dba1c3fad0b9f3fe6d1c3ea3632fcb Mon Sep 17 00:00:00 2001 From: CAMUS Benjamin Date: Thu, 12 Dec 2024 15:23:23 +0100 Subject: [PATCH] fix bug to read the reserve parameters whose names are more than 30 caracters long --- src/libs/antares/study/area/list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/antares/study/area/list.cpp b/src/libs/antares/study/area/list.cpp index f572b99449..30a6c44760 100644 --- a/src/libs/antares/study/area/list.cpp +++ b/src/libs/antares/study/area/list.cpp @@ -923,7 +923,7 @@ static bool AreaListLoadFromFolderSingleArea(Study& study, { for (auto* p = section.firstProperty; p; p = p->next) { - CString<30, false> tmp; + CString<32, false> tmp; tmp = p->key; tmp.toLower();