am 5dfdb701: Merge "FORTIFY_SOURCE: fix up previous commit"

* commit '5dfdb701292c53e74e319f277d808e598389c8e7':
  FORTIFY_SOURCE: fix up previous commit
This commit is contained in:
Nick Kralevich 2012-12-07 12:18:58 -08:00 committed by Android Git Automerger
commit 79e1a01e9e
2 changed files with 2 additions and 6 deletions

View File

@ -53,9 +53,7 @@ int open(const char *pathname, int flags, ...)
int __open_2(const char *pathname, int flags) {
if (flags & O_CREAT) {
__libc_android_log_print(ANDROID_LOG_FATAL, "libc",
"*** open(O_CREAT) called without specifying a mode ***\n");
abort();
__fortify_chk_fail("open(O_CREAT) called without specifying a mode", 0);
}
flags |= O_LARGEFILE;

View File

@ -54,9 +54,7 @@ int openat(int fd, const char *pathname, int flags, ...)
int __openat_2(int fd, const char *pathname, int flags)
{
if (flags & O_CREAT) {
__libc_android_log_print(ANDROID_LOG_FATAL, "libc",
"*** openat(O_CREAT) called without specifying a mode ***\n");
abort();
__fortify_chk_fail("openat(O_CREAT) called without specifying a mode", 0);
}
flags |= O_LARGEFILE;