summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bplist.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bplist.c b/src/bplist.c
index 0c57a75..64c9081 100644
--- a/src/bplist.c
+++ b/src/bplist.c
@@ -1154,6 +1154,7 @@ PLIST_API void plist_to_bin(plist_t plist, char **plist_bin, uint32_t * length)
1154 uint64_t offset = be64toh(offsets[i]); 1154 uint64_t offset = be64toh(offsets[i]);
1155 byte_array_append(bplist_buff, (uint8_t*)&offset + (sizeof(uint64_t) - offset_size), offset_size); 1155 byte_array_append(bplist_buff, (uint8_t*)&offset + (sizeof(uint64_t) - offset_size), offset_size);
1156 } 1156 }
1157 free(offsets);
1157 1158
1158 //setup trailer 1159 //setup trailer
1159 memset(trailer.unused, '\0', sizeof(trailer.unused)); 1160 memset(trailer.unused, '\0', sizeof(trailer.unused));
@@ -1165,11 +1166,10 @@ PLIST_API void plist_to_bin(plist_t plist, char **plist_bin, uint32_t * length)
1165 1166
1166 byte_array_append(bplist_buff, &trailer, sizeof(bplist_trailer_t)); 1167 byte_array_append(bplist_buff, &trailer, sizeof(bplist_trailer_t));
1167 1168
1168 //duplicate buffer 1169 //set output buffer and size
1169 *plist_bin = (char *) malloc(bplist_buff->len); 1170 *plist_bin = bplist_buff->data;
1170 memcpy(*plist_bin, bplist_buff->data, bplist_buff->len);
1171 *length = bplist_buff->len; 1171 *length = bplist_buff->len;
1172 1172
1173 bplist_buff->data = NULL; // make sure we don't free the output buffer
1173 byte_array_free(bplist_buff); 1174 byte_array_free(bplist_buff);
1174 free(offsets);
1175} 1175}