diff options
Diffstat (limited to 'content/common/plugin_list_posix.cc')
-rw-r--r-- | content/common/plugin_list_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/common/plugin_list_posix.cc b/content/common/plugin_list_posix.cc index a5d7fac..abc74ba 100644 --- a/content/common/plugin_list_posix.cc +++ b/content/common/plugin_list_posix.cc @@ -173,7 +173,7 @@ bool ELFMatchesCurrentArchitecture(const base::FilePath& filename) { if (fd < 0) return false; bool ret = (fstat(fd, &stat_buf) >= 0 && S_ISREG(stat_buf.st_mode)); - if (HANDLE_EINTR(close(fd)) < 0) + if (IGNORE_EINTR(close(fd)) < 0) return false; if (!ret) return false; |