Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 771c1ed5 authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge "cutils: don\'t fortify property_get on clang." am: 310da0b9

am: 2a1f2092

* commit '2a1f2092':
  cutils: don't fortify property_get on clang.

Change-Id: Idd7402dca16633fa19e2110b6d74b005b3e519f9
parents 8edfe204 2a1f2092
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");