add a note about weird bug

This commit is contained in:
Sven M. Hallberg 2013-01-11 01:10:16 +01:00
parent c62079516d
commit ad3c2032dc

View file

@ -188,6 +188,10 @@ const HParser *init_parser(void)
H_ARULE(ws, h_many(space)); H_ARULE(ws, h_many(space));
H_ARULE(document, h_sequence(ws, base64, ws, h_end_p(), NULL)); H_ARULE(document, h_sequence(ws, base64, ws, h_end_p(), NULL));
// BUG sometimes inputs that should just don't parse.
// It *seemed* to happen mostly with things like "bbbbaaaaBA==".
// Using less actions seemed to make it less likely.
return document; return document;
} }