]> granicus.if.org Git - re2c/commitdiff
- Applied #1408282 CharSet initialization fix.
authorhelly <helly@642ea486-5414-0410-9d7f-a0204ed87703>
Tue, 17 Jan 2006 19:40:12 +0000 (19:40 +0000)
committerhelly <helly@642ea486-5414-0410-9d7f-a0204ed87703>
Tue, 17 Jan 2006 19:40:12 +0000 (19:40 +0000)
CHANGELOG
actions.cc

index cf4954f28a6c661c5b40109b926d21f0d9592d31..5f955968a13170a6a2f36ca5cb15de7b6dc2bccb 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -7,6 +7,7 @@ Version 0.10.0 (????-??-??)
 - Added support for DOS line endings.
 - Added experimental unicode support.
 - Added config_w32.h to build out of the box on windows (using msvc 2002+).
+- Applied #1408282 CharSet initialization fix.
 - Applied #1408278 readsome with MSVC.
 - Applied #1307467 Unicode patch for 0.9.7.
 
index 73250d17cdaff985ff93b25c9d4a1f6455f0d80d..4795ac6d2843d7a7cd154914c677d8cca3159f83 100644 (file)
@@ -967,6 +967,7 @@ CharSet::CharSet()
        {
                rep[j] = &ptn[0];
                ptn[j].nxt = &ptn[j + 1]; /* wrong for j=nRealChars but will be corrected below */
+               ptn[j].card = 0;
        }
 
        freeHead = &ptn[1];