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

Unified Diff: runtime/bin/socket.dart

Issue 8659032: Fix memory leak in MacOS process handling. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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
Index: runtime/bin/socket.dart
diff --git a/runtime/bin/socket.dart b/runtime/bin/socket.dart
index bdbc974ec5522b18119a42a910579cc9007a827d..3a7469242c68944fb2946ba56c297ff2535a2c09 100644
--- a/runtime/bin/socket.dart
+++ b/runtime/bin/socket.dart
@@ -62,8 +62,7 @@ interface Socket factory _Socket {
* Writes up to [count] bytes of the buffer from [offset] buffer offset to
* the socket. The number of successfully written bytes is returned. This
* function is non-blocking and will only write data if buffer space is
- * available in the socket. It will return 0 if an error occurs, e.g., no
- * buffer space available.
+ * available in the socket.
*/
int writeList(List<int> buffer, int offset, int count);

Powered by Google App Engine
This is Rietveld 408576698