diff options
| author | 2021-12-19 02:43:36 +0100 | |
|---|---|---|
| committer | 2021-12-19 02:43:36 +0100 | |
| commit | c31beaaec196c26990139e3fc4f89f996d7b86e9 (patch) | |
| tree | 1cc44bd4f7d69924ba1e21df8bc2d9b1010f3090 /src/plist.c | |
| parent | a9e34bd29ae9dcdae55bdf5fb8a23c9b1c02eee9 (diff) | |
| download | libplist-c31beaaec196c26990139e3fc4f89f996d7b86e9.tar.gz libplist-c31beaaec196c26990139e3fc4f89f996d7b86e9.tar.bz2 | |
Add new plist_mem_free() function
Thanks to @azerg for bringing this to my attention.
Instead of having multiple (internally identical) plist_*_free() functions,
this commit introduces a single plist_mem_free() that can be used to free
the memory allocated by plist_to_xml(), plist_to_bin(), plist_get_key_val(),
plist_get_string_val(), and plist_get_data_val().
Note: This commit REMOVES plist_to_bin_free() and plist_to_xml_free().
Diffstat (limited to 'src/plist.c')
| -rw-r--r-- | src/plist.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/plist.c b/src/plist.c index d0e6c77..386b04e 100644 --- a/src/plist.c +++ b/src/plist.c | |||
| @@ -382,6 +382,14 @@ PLIST_API void plist_free(plist_t plist) | |||
| 382 | } | 382 | } |
| 383 | } | 383 | } |
| 384 | 384 | ||
| 385 | PLIST_API void plist_mem_free(void* ptr) | ||
| 386 | { | ||
| 387 | if (ptr) | ||
| 388 | { | ||
| 389 | free(ptr); | ||
| 390 | } | ||
| 391 | } | ||
| 392 | |||
| 385 | static plist_t plist_copy_node(node_t *node) | 393 | static plist_t plist_copy_node(node_t *node) |
| 386 | { | 394 | { |
| 387 | plist_type node_type = PLIST_NONE; | 395 | plist_type node_type = PLIST_NONE; |
