diff options
author | Nick Kralevich <nnk@google.com> | 2012-12-04 13:55:19 -0800 |
---|---|---|
committer | Nick Kralevich <nnk@google.com> | 2012-12-04 15:27:30 -0800 |
commit | 326ea5413d18ea019cd1bda415ce428f7bdcafd2 (patch) | |
tree | 630469ff443d522e356418bfda081452d28606f6 /libc/bionic/__vsprintf_chk.cpp | |
parent | db79e827ebcb077ebaa6d6c96915c5bffba9a0ca (diff) | |
download | android_bionic-326ea5413d18ea019cd1bda415ce428f7bdcafd2.tar.gz android_bionic-326ea5413d18ea019cd1bda415ce428f7bdcafd2.tar.bz2 android_bionic-326ea5413d18ea019cd1bda415ce428f7bdcafd2.zip |
clean up FORTIFY_SOURCE handling.
Avoid duplicating huge chunks of code.
Change-Id: Id6145cdfce781c5ffba2abaaa79681d25a7ab28f
Diffstat (limited to 'libc/bionic/__vsprintf_chk.cpp')
-rw-r--r-- | libc/bionic/__vsprintf_chk.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/bionic/__vsprintf_chk.cpp b/libc/bionic/__vsprintf_chk.cpp index 00010cfca..e1d10f55a 100644 --- a/libc/bionic/__vsprintf_chk.cpp +++ b/libc/bionic/__vsprintf_chk.cpp @@ -52,9 +52,7 @@ extern "C" int __vsprintf_chk( int ret = vsnprintf(dest, dest_len_from_compiler, format, va); if ((size_t) ret >= dest_len_from_compiler) { - __libc_android_log_print(ANDROID_LOG_FATAL, "libc", - "*** vsprintf buffer overflow detected ***\n"); - abort(); + __fortify_chk_fail("vsprintf buffer overflow", 0); } return ret; |