From 00394f239e79cbfe0af36eb11c02290ac76e56e2 Mon Sep 17 00:00:00 2001
From: guowenxue <guowenxue@gmail.com>
Date: Thu, 22 Aug 2024 17:50:02 +0800
Subject: [PATCH] move api to modules

---
 booster/iniparser.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/booster/iniparser.c b/booster/iniparser.c
index 95957f5..3a446e5 100644
--- a/booster/iniparser.c
+++ b/booster/iniparser.c
@@ -1,10 +1,10 @@
 
 /*-------------------------------------------------------------------------*/
 /**
-   @file    iniparser.c v4.1 
+   @file    iniparser.c
    @author  N. Devillard
-   @url     https://github.com/ndevilla/iniparser
    @brief   Parser for ini files.
+   @url     https://github.com/ndevilla/iniparser
 */
 /*--------------------------------------------------------------------------*/
 /*---------------------------- Includes ------------------------------------*/
@@ -719,7 +719,7 @@
     char line    [ASCIILINESZ+1] ;
     char section [ASCIILINESZ+1] ;
     char key     [ASCIILINESZ+1] ;
-    char tmp     [(ASCIILINESZ * 2) + 1] ;
+    char tmp     [(ASCIILINESZ * 2) + 2] ;
     char val     [ASCIILINESZ+1] ;
 
     int  last=0 ;

--
Gitblit v1.9.1