Commit 9e4b5eb5 authored by Nikias Bassen's avatar Nikias Bassen

bplist: Fix missing break in switch statement in plist_to_bin()

Credit to Christophe Fergeau
parent af52f042
......@@ -1270,6 +1270,7 @@ PLIST_API void plist_to_bin(plist_t plist, char **plist_bin, uint32_t * length)
break;
case PLIST_DATA:
write_data(bplist_buff, data->buff, data->length);
break;
case PLIST_ARRAY:
write_array(bplist_buff, ptr_array_index(objects, i), ref_table, ref_size);
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment