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

Unified Diff: runtime/bin/process_patch.dart

Issue 11614024: Fix closing of process stdin on Process.run. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process_patch.dart
diff --git a/runtime/bin/process_patch.dart b/runtime/bin/process_patch.dart
index 6646d07a18a6ca70f4e6e01b94323394c03ca4bd..f827c53c549d2c0958426132346259b908a4bc45 100644
--- a/runtime/bin/process_patch.dart
+++ b/runtime/bin/process_patch.dart
@@ -314,7 +314,7 @@ class _NonInteractiveProcess {
processFuture.then((Process p) {
// Make sure the process stdin is closed.
- p.stdin.close;
+ p.stdin.close();
Søren Gjesse 2012/12/18 07:38:44 Oops.
// Setup process exit handling.
p.onExit = (exitCode) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698