Merge "cutils: don\'t fortify property_get on clang." am: 310da0b990 am: 2a1f209245

am: 771c1ed582

* commit '771c1ed5826809ab45932e4b768cc9641f9618f9':
  cutils: don't fortify property_get on clang.

Change-Id: I25e041c4cdf757c43bf6c9c2922721b78a1eb44e
This commit is contained in:
Josh Gao 2016-06-03 19:53:37 +00:00 committed by android-build-merger
commit 9cc46b972b
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ int property_set(const char *key, const char *value);
int property_list(void (*propfn)(const char *key, const char *value, void *cookie), void *cookie);
#if defined(__BIONIC_FORTIFY)
#if defined(__BIONIC_FORTIFY) && !defined(__clang__)
extern int __property_get_real(const char *, char *, const char *)
__asm__(__USER_LABEL_PREFIX__ "property_get");