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:
parent
8623bf7b4d
commit
063a572e6b
|
@ -48,6 +48,7 @@ struct prop_area_compat {
|
||||||
unsigned volatile serial;
|
unsigned volatile serial;
|
||||||
unsigned magic;
|
unsigned magic;
|
||||||
unsigned version;
|
unsigned version;
|
||||||
|
unsigned reserved[4];
|
||||||
unsigned toc[1];
|
unsigned toc[1];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue