From 063a572e6bc958746031ad5cc4d4f9622c5d6ad3 Mon Sep 17 00:00:00 2001
From: "Joshua J. Drake" <android-open-source@qoop.org>
Date: Fri, 13 Dec 2013 13:44:53 -0600
Subject: [PATCH] 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.
---
 libc/bionic/system_properties_compat.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libc/bionic/system_properties_compat.c b/libc/bionic/system_properties_compat.c
index 6dbc4ccea..0326f053a 100644
--- a/libc/bionic/system_properties_compat.c
+++ b/libc/bionic/system_properties_compat.c
@@ -48,6 +48,7 @@ struct prop_area_compat {
     unsigned volatile serial;
     unsigned magic;
     unsigned version;
+    unsigned reserved[4];
     unsigned toc[1];
 };