Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-06-30 | Avoid writing invalid prefixed name prefixes | David Robillard | 1 | -1/+2 | |
2021-05-31 | Remove "static inline" for functions in implementation files | David Robillard | 1 | -5/+5 | |
This is just noise since these are static functions local to a C compilation unit. | |||||
2021-05-16 | Remove redundant cast | David Robillard | 1 | -1/+1 | |
2021-04-09 | Write invalid characters in URIs with percent encoding | David Robillard | 1 | -5/+9 | |
2021-02-15 | Fix writing long literals with triple quotes | David Robillard | 1 | -2/+10 | |
2021-01-09 | Add missing pure attributes | David Robillard | 1 | -1/+1 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 1 | -1/+1 | |
2020-12-31 | Format all code with clang-format | David Robillard | 1 | -751/+814 | |
2020-12-31 | Avoid "else" after "break" and "return" | David Robillard | 1 | -16/+31 | |
2020-11-14 | Refuse to write relative URI references to NTriples | David Robillard | 1 | -0/+15 | |
2020-11-14 | Simplify abbreviated URI writing code | David Robillard | 1 | -13/+14 | |
2020-11-13 | Simplify writer statement validity checking | David Robillard | 1 | -5/+3 | |
2020-11-13 | Improve add and chop prefix functions when given empty strings | David Robillard | 1 | -4/+5 | |
2020-11-11 | Add nonnull and nullable attributes to API | David Robillard | 1 | -0/+1 | |
This will warn if NULL is passed to any nonnull-annotated parameter, and is also supported by sanitizers which can check for violations at runtime. Unfortunately, it is currently only supported by clang. GCC has a similar feature in the nonnull attribute, but this has a different syntax (it's a function attribute) and is more dangerous since it is used by the optimizer to assume a null pointer is undefined behavior. This one just warns and still allows code to handle the situation gracefully, which I think is more appropriate for a library API. Note that this optimization behavior is not some unlikely edge case: switching these attributes to the GCC one will break release builds. | |||||
2020-08-16 | Ensure that all free methods tolerate NULL | David Robillard | 1 | -0/+4 | |
2020-08-14 | Fix incorrect separator length | David Robillard | 1 | -1/+1 | |
2020-08-14 | Fix Wswitch-enum warnings | David Robillard | 1 | -6/+4 | |
2020-08-14 | Clean up and separate internal headers | David Robillard | 1 | -0/+12 | |
2020-07-06 | Fix spurious semicolon warnings | David Robillard | 1 | -3/+5 | |
2020-06-21 | Cleanup: Add missing default switch cases | David Robillard | 1 | -0/+3 | |
2020-06-21 | Cleanup: Fix uninitialised variables | David Robillard | 1 | -3/+4 | |
2020-06-21 | Cleanup: Avoid declaring multiple variables on a single line | David Robillard | 1 | -1/+3 | |
2020-06-21 | Clean up includes | David Robillard | 1 | -1/+6 | |
2020-04-26 | Fix potential passing of NULL to printf | David Robillard | 1 | -1/+1 | |
2019-01-05 | Fix unused parameter warnings | David Robillard | 1 | -2/+1 | |
2018-06-15 | Remove redundant SERD_API declarations | David Robillard | 1 | -14/+0 | |
2018-06-10 | Remove syntax assumptions from SerdEnv implementation | David Robillard | 1 | -1/+15 | |
2018-05-27 | Clarify errors returned by serd_env_expand() | David Robillard | 1 | -5/+5 | |
2018-02-04 | Factor out syntax-specific reader implementation | David Robillard | 1 | -8/+0 | |
2017-11-05 | Factor out namespace defines | David Robillard | 1 | -3/+0 | |
2017-09-23 | Use more efficient stack allocation and growth policies | David Robillard | 1 | -1/+1 | |
2017-08-29 | Fix writing of corrupt UTF-8 | David Robillard | 1 | -8/+7 | |
2017-07-30 | Move parse_utf8_char to shared internal header | David Robillard | 1 | -20/+1 | |
2017-07-30 | Cleanup: Add push_bytes function to reduce code verbosity | David Robillard | 1 | -2/+0 | |
2017-07-10 | Cleanup: Separate writer code into smaller functions | David Robillard | 1 | -154/+207 | |
2017-07-10 | Gracefully handle applications that write corrupt UTF-8 | David Robillard | 1 | -7/+13 | |
2017-07-10 | Factor out UTF-8 character size counting | David Robillard | 1 | -23/+1 | |
2017-06-30 | Clean up UTF-8 parsing and use CLZ if available | David Robillard | 1 | -27/+29 | |
2017-06-30 | Cleanup: Remove unnecessary variable | David Robillard | 1 | -4/+3 | |
2017-06-30 | Fix various clang-tidy issues | David Robillard | 1 | -1/+1 | |
2017-05-20 | Abstract more syntax specifics away from writer | David Robillard | 1 | -7/+11 | |
2017-04-14 | Make BulkSink general and factor out details from Writer | David Robillard | 1 | -21/+6 | |
2017-02-14 | Improve struct packing | David Robillard | 1 | -1/+1 | |
2017-01-07 | Add support for writing TriG | David Robillard | 1 | -29/+67 | |
2017-01-06 | Add support for reading TriG | David Robillard | 1 | -10/+11 | |
2017-01-06 | Tidy | David Robillard | 1 | -2/+2 | |
2017-01-05 | Add support for NQuads | David Robillard | 1 | -2/+9 | |
2016-09-18 | Update copyright dates | David Robillard | 1 | -1/+1 | |
2016-06-13 | Fix use of uninitialized fields | David Robillard | 1 | -8/+1 | |
Fixes #1135 | |||||
2016-03-15 | Fix potential out of bounds read | David Robillard | 1 | -1/+2 | |