Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-08-16 | Fix loop index variable type | David Robillard | 1 | -5/+5 | |
2020-08-16 | Fix handling of bad syntax that ends a collection | David Robillard | 3 | -1/+9 | |
2020-08-16 | Fix EOF and null byte handling | David Robillard | 3 | -3/+12 | |
This is a bit questionable, but the null byte support is needed for streaming over a socket where some delimiter is required. This caused a bug where serdi would hang forever on corrupt files that contain a null byte. Fix this by consuming the byte, but otherwise behaving as before. | |||||
2020-08-16 | Add a test for reading from socket-like streams | David Robillard | 1 | -0/+61 | |
2020-08-15 | Clean up reader error handling | David Robillard | 5 | -315/+363 | |
2020-08-15 | Make read_String() return a status | David Robillard | 1 | -42/+47 | |
2020-08-15 | Make read_IRIREF_scheme() return a status | David Robillard | 1 | -15/+11 | |
2020-08-15 | Make r_err() return a status | David Robillard | 3 | -57/+80 | |
2020-08-15 | Make read_PrefixedName() return a status | David Robillard | 1 | -12/+17 | |
2020-08-15 | Make read_PERCENT() return a status | David Robillard | 1 | -8/+4 | |
2020-08-15 | Make read_UCHAR() and read_ECHAR() return a status | David Robillard | 1 | -21/+21 | |
2020-08-15 | Exploit push_byte return status | David Robillard | 1 | -2/+1 | |
2020-08-15 | Move prototype to a more sensible location | David Robillard | 1 | -4/+4 | |
2020-08-15 | Fix stack check C++ compatibility | David Robillard | 1 | -1/+1 | |
2020-08-15 | Harden prefixed name parsing | David Robillard | 4 | -10/+49 | |
2020-08-14 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-08-14 | Use ultra-strict warnings and Werror on Windows CI rows | David Robillard | 2 | -2/+4 | |
2020-08-14 | Factor out command wrapping for ARM emulator | David Robillard | 1 | -5/+9 | |
2020-08-14 | Factor out test option iterator generation | David Robillard | 1 | -7/+12 | |
2020-08-14 | Use one sentence per line in man page | David Robillard | 1 | -7/+5 | |
This apparently lets troff do line wrapping better in some scenarios, and is the best practice for text in revision control anyway. | |||||
2020-08-14 | Avoid use of rand() | David Robillard | 2 | -12/+3 | |
2020-08-14 | Fix incorrect separator length | David Robillard | 1 | -1/+1 | |
2020-08-14 | Avoid absurd Windows warnings about "deprecated" POSIX functions | David Robillard | 1 | -2/+2 | |
2020-08-14 | Add test for serd_strerror with unknown errors | David Robillard | 1 | -3/+6 | |
2020-08-14 | Fix Wswitch-enum warnings | David Robillard | 4 | -14/+35 | |
2020-08-14 | Make serd_stack_push() return a void pointer | David Robillard | 2 | -2/+2 | |
This avoids some unnecessary type punning. | |||||
2020-08-14 | Add test for bad blank graph labels | David Robillard | 2 | -0/+9 | |
2020-08-14 | Avoid copying nodes when equivalent prefixes are set | David Robillard | 1 | -3/+5 | |
2020-08-14 | Suppress Wzero-as-null-pointer-constant in header for GCC as well | David Robillard | 1 | -5/+5 | |
2020-08-14 | Remove obsolete things from Doxygen file | David Robillard | 1 | -47/+1 | |
2020-08-14 | Separate base64 implementation | David Robillard | 5 | -83/+176 | |
2020-08-14 | Use SerdNodeFlags type everywhere | David Robillard | 1 | -7/+7 | |
2020-08-14 | Clean up and separate internal headers | David Robillard | 19 | -606/+885 | |
2020-08-14 | Reorder declarations to put node constructors together | David Robillard | 1 | -16/+16 | |
2020-07-21 | Suppress Wzero-as-null-pointer-constant in header | David Robillard | 1 | -0/+7 | |
For convenience of C++ projects that include the C header. | |||||
2020-07-15 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-07-15 | Build with ultra-strict flags and Werror on CI | David Robillard | 1 | -15/+15 | |
2020-07-15 | Fix strict build with MinGW | David Robillard | 1 | -0/+1 | |
2020-07-15 | Fix strict release configuration with GCC 10.1.0 | David Robillard | 2 | -0/+4 | |
2020-07-06 | Update autowaf and be explicit about warning flags | David Robillard | 2 | -3/+44 | |
2020-07-06 | Fix spurious semicolon warnings | David Robillard | 4 | -12/+14 | |
2020-07-06 | Fix format conversion warnings | David Robillard | 2 | -4/+10 | |
2020-07-05 | Remove redundant switch statement | David Robillard | 1 | -3/+1 | |
2020-07-05 | Remove unreachable code | David Robillard | 1 | -3/+2 | |
2020-06-21 | Normalise NEWS file | David Robillard | 1 | -1/+1 | |
2020-06-21 | Strengthen lint target | David Robillard | 2 | -20/+67 | |
2020-06-21 | Cleanup: Add missing default switch cases | David Robillard | 3 | -0/+13 | |
2020-06-21 | Cleanup: Fix uninitialised variables | David Robillard | 5 | -32/+33 | |
2020-06-21 | Cleanup: Avoid declaring multiple variables on a single line | David Robillard | 2 | -2/+5 | |
2020-06-21 | Cleanup: Avoid malloc of 0 bytes | David Robillard | 1 | -1/+1 | |