Fix backwards compatible system property structure

The original structure included four reserved 32-bit values. This
change adds these back into the structure so that the
__system_property_find_compat function will (again) process the system
properties correctly.
This commit is contained in:
Joshua J. Drake 2013-12-13 13:44:53 -06:00
parent 8623bf7b4d
commit 063a572e6b

View File

@ -48,6 +48,7 @@ struct prop_area_compat {
unsigned volatile serial;
unsigned magic;
unsigned version;
unsigned reserved[4];
unsigned toc[1];
};