When compiling with clang, don't "fortify_source" the strlen.

At this point, FORTIFY_SOURCE and clang are just plain incompatible.
Need to solve the underlying incompatibility first.

Change-Id: I3366477d19461e1ec93b1c30e0c7e8145b391b9b
This commit is contained in:
Shih-wei Liao 2012-08-06 09:50:56 -07:00
parent 1c861728e5
commit 9a3d53fad0

View File

@ -208,6 +208,7 @@ size_t strlcat(char *dest, const char *src, size_t size) {
return __strlcat_chk(dest, src, size, bos);
}
#if !defined(__clang__)
__purefunc extern size_t __strlen_real(const char *)
__asm__(__USER_LABEL_PREFIX__ "strlen");
extern size_t __strlen_chk(const char *, size_t);
@ -223,6 +224,7 @@ size_t strlen(const char *s) {
return __strlen_chk(s, bos);
}
#endif /* !defined(__clang__) */
#endif /* defined(__BIONIC_FORTIFY_INLINE) */