Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(711)

Unified Diff: runtime/bin/stdio_macos.cc

Issue 177863010: Don't report hasTerminal, if term-size is (0,0). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« runtime/bin/stdio_android.cc ('K') | « runtime/bin/stdio_linux.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/stdio_macos.cc
diff --git a/runtime/bin/stdio_macos.cc b/runtime/bin/stdio_macos.cc
index 4b27a1b56bc71201b76d9b29591d9d6067a40887..79e34f89cee5d37c183f8b468c4ebcd88d67d775 100644
--- a/runtime/bin/stdio_macos.cc
+++ b/runtime/bin/stdio_macos.cc
@@ -67,12 +67,13 @@ void Stdin::SetLineMode(bool enabled) {
bool Stdout::GetTerminalSize(int size[2]) {
struct winsize w;
if (TEMP_FAILURE_RETRY_BLOCK_SIGNALS(
- ioctl(STDOUT_FILENO, TIOCGWINSZ, &w) != 0)) {
- return false;
+ ioctl(STDOUT_FILENO, TIOCGWINSZ, &w) == 0) &&
+ (w.ws_col != 0 || w.ws_row != 0)) {
+ size[0] = w.ws_col;
+ size[1] = w.ws_row;
+ return true;
}
- size[0] = w.ws_col;
- size[1] = w.ws_row;
- return true;
+ return false;
}
} // namespace bin
« runtime/bin/stdio_android.cc ('K') | « runtime/bin/stdio_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698