summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Add plist_read_from_file() to interface, update plist_from_memory()Nikias Bassen2023-04-191-1/+51
* Add new output-only formats and Define constants for the different plist formatsNikias Bassen2023-04-169-6/+1538
* Fix build without --enable-debugNikias Bassen2023-02-074-0/+8
* Add function to interface to allow enabling/disabling error/debug output for ...Nikias Bassen2023-02-075-0/+33
* libcnary: Updated typedefs of node_t and node_list_t to contain pointerNikias Bassen2023-02-065-67/+64
* Fix plist_sort() by swapping the nodes in the tree instead of their dataNikias Bassen2023-02-051-29/+33
* Add new plist_sort() functionNikias Bassen2023-02-031-0/+61
* Add lowercase begin/end iterator functionsDaniel2023-02-032-0/+40
* Add PList::Array iterator member functionsDaniel2023-02-031-0/+20
* bplist: Fix handling of PLIST_NULL node typeNikias Bassen2023-01-312-0/+2
* jplist: Fix handling of PLIST_NULL type when converting to JSONNikias Bassen2023-01-311-0/+3
* xplist: Add missing newline to debug messageNikias Bassen2023-01-191-1/+1
* jplist: Add missing newline to debug messageNikias Bassen2023-01-191-1/+1
* oplist: Prevent too many levels of recursion to prevent stack overflowNikias Bassen2023-01-181-1/+9
* oplist: Fix another OOB readNikias Bassen2023-01-171-0/+7
* Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val()Nikias Bassen2023-01-1610-38/+121
* oplist: Fix another OOB readNikias Bassen2023-01-131-0/+3
* oplist: Plug another memory leak occurring on parse errorNikias Bassen2023-01-111-0/+1
* oplist: Plug some more memory leaks occuring when parsing failsNikias Bassen2023-01-111-4/+5
* oplist: Add more bound checks to prevent OOB readsNikias Bassen2023-01-091-2/+32
* oplist: Fix OOB read by checking bounds properlyNikias Bassen2023-01-091-1/+6
* oplist: Fix use-after-free by setting free'd pointer to NULLNikias Bassen2023-01-091-0/+1
* oplist: Plug memory leaks occurring when parsing failsNikias Bassen2023-01-091-0/+7
* Add support for OpenStep plist formatNikias Bassen2023-01-083-5/+911
* JSON: Only allow to convert PLIST_DICT or PLIST_ARRAY node to JSONNikias Bassen2023-01-081-0/+8
* jplist: Prevent multiplication overflow by casting to larger typeNikias Bassen2022-11-021-2/+2
* jplist: Fix warning with `-Wbad-function-cast`Nikias Bassen2022-09-051-2/+2
* Fix up warning with `-Wbad-function-cast`Dave MacLachlan2022-09-051-1/+4
* Get rid of casting a ptr to a 32 bit valueDave MacLachlan2022-09-051-2/+2
* bplist: Fix strict aliasing violationsMatthew Smith2022-08-241-3/+9
* jplist: Escape characters [0x00..0x1F] when converting to JSONNikias Bassen2022-04-061-5/+12
* Skip whitespace to properly detect format in plist_from_memory()Nikias Bassen2022-04-061-3/+8
* jplist: Fix another OOB read by using correct bounds checkNikias Bassen2022-02-151-1/+1
* jplist: Fix OOB read by using correct bounds checkNikias Bassen2022-02-111-1/+1
* jplist: Prevent read of uninitialized value by checking the bounds beforehandNikias Bassen2022-02-081-2/+2
* xplist: Prevent undefined behavior by not trying to negate INT64_MINNikias Bassen2022-02-071-1/+1
* jplist: Prevent integer overflow when parsing numerical valuesNikias Bassen2022-02-071-6/+29
* jplist: Fix OOB read by making sure number of children is evenNikias Bassen2022-02-031-2/+6
* jplist: Fix memory leak on parse errorNikias Bassen2022-02-021-0/+2
* jplist: Improve numerical value parsing without copying data to stack bufferNikias Bassen2022-02-021-18/+62
* jplist: Fix memory leak that occurs when JSON parsing failsNikias Bassen2022-01-311-0/+1
* jplist: Fix OOB read in parse_primitive caused by missing 0-terminationNikias Bassen2022-01-311-2/+8
* jplist: Fix OOB read by making sure the JSMN token index is in valid rangeNikias Bassen2022-01-311-31/+48
* jplist: Fix a few memory leaks that occur when parsing failsNikias Bassen2022-01-281-0/+5
* jplist: Fix NULL pointer dereference by handling errors from unescape_string ...Nikias Bassen2022-01-281-0/+6
* jplist: Fix use-after-free in unescape_stringNikias Bassen2022-01-281-2/+2
* jplist: Make sure the jsmn parser tokens are initialized properlyNikias Bassen2022-01-251-3/+6
* jplist: Make sure key values are also unescapedNikias Bassen2022-01-251-12/+19
* json: Update parser (jsmn) to verify the length of the input dataNikias Bassen2021-12-243-7/+17
* jplist: Make strndup argument const to silence compiler warningNikias Bassen2021-12-231-1/+1