summaryrefslogtreecommitdiff
path: root/src/scanner.c
Commit message (Collapse)AuthorAgeFilesLines
* spec-1.2 rule [53]Ingy döt Net2016-10-061-0/+4
| | | | Support "\/" for JSON compatability.
* Removed invalid simple key assertion (thank to Jonathan Gray).Kirill Simonov2014-11-281-7/+0
|
* Fixed heap overflow in yaml_parser_scan_uri_escapes (Thanks Ivan Fratric of ↵0.1.6Kirill Simonov2014-03-261-0/+3
| | | | the Google Security Team).
* Forgot to set the error state.Kirill Simonov2014-02-031-2/+6
|
* Guard against overflows in indent and flow_level.Kirill Simonov2014-02-021-7/+13
|
* Fixed invalid size_t->int cast (Thank to Florian Weimer).Kirill Simonov2014-01-121-1/+1
|
* Fixed pointer arithmetic overflow when calculating the position of a ↵Kirill Simonov2010-10-111-1/+1
| | | | potential simple key (#156, thank to ppelletier(at)oblong(dot)com).
* Fixed non-ANSI initializations (fixes #115).Kirill Simonov2009-02-231-3/+5
|
* Fixed grammar in error messages (from YAML::XS::LibYAML).Kirill Simonov2008-07-311-6/+6
|
* Eliminate some warnings and add more doxygen definitions.Kirill Simonov2007-01-081-1/+3
|
* Add win32 fixes and project files for VC6.Kirill Simonov2007-01-071-12/+13
|
* Force a new line at the end of the input stream even if there are no a new ↵Kirill Simonov2006-12-111-0/+7
| | | | line character. This fixes a nasty bug when libyaml hangs on documents like `[[[[`. Thanks ciaranm for reporting the bug.
* Implement everything except tag and scalar writers.Kirill Simonov2006-07-281-344/+171
|
* Implement Emitter state machine.Kirill Simonov2006-07-261-2/+4
|
* Add Emitter definitions and implement the Writer.Kirill Simonov2006-07-231-46/+0
|
* Fix some leaks, segfaults and warnings.Kirill Simonov2006-07-211-1/+1
|
* Refactor internal and external API.Kirill Simonov2006-07-211-1001/+653
|
* Complete the Parser (it requires refactoring though) and fix some bugs.Kirill Simonov2006-07-071-0/+2
|
* Move yaml/yaml.h to yaml.h and merge version.c to api.c.Kirill Simonov2006-07-031-1/+1
|
* Fix numerous bugs in the Scanner.Kirill Simonov2006-06-191-25/+67
|
* The scanner is completed (not tested though).Kirill Simonov2006-06-181-22/+575
|
* Implement the block scalar scanner.Kirill Simonov2006-06-161-20/+412
|
* Implement scanners for directives, anchors, and tags.Kirill Simonov2006-06-111-61/+1026
|
* Scanner: implement everything except token scanners.Kirill Simonov2006-06-081-32/+1125
|
* Implementing Scanner: macros and high-level functions.Kirill Simonov2006-06-071-14/+423
|
* Add scanner definitions.Kirill Simonov2006-06-061-0/+667
Add a basic description of all tokens produced by the scanner.