URI:
       slightly reduce stack size for entities - xmlparser - XML parser
  HTML git clone git://git.codemadness.org/xmlparser
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 317a612f61bb72c4b67a0cb8f923c2d37e7bdcec
   DIR parent fc93b122349d4281c31fadf30360c2a5b6c235c9
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sun, 21 Sep 2025 14:24:55 +0200
       
       slightly reduce stack size for entities
       
       Diffstat:
         M skeleton.c                          |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/skeleton.c b/skeleton.c
       @@ -13,7 +13,7 @@ xmlattrentity(XMLParser *x, const char *t, size_t tl, const char *a, size_t al,
                      const char *v, size_t vl)
        {
        #if 0
       -        char buf[16];
       +        char buf[8];
                int len;
        
                /* try to translate entity, else just pass as data to
       @@ -79,7 +79,7 @@ void
        xmldataentity(XMLParser *x, const char *d, size_t dl)
        {
        #if 0
       -        char buf[16];
       +        char buf[8];
                int len;
        
                /* try to translate entity, else just pass as data to