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

Side by Side Diff: src/platform-macos.cc

Issue 42331: Fixed memory leaks in socket implementation (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/platform-linux.cc ('k') | src/platform-win32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 hints.ai_family = AF_INET; 663 hints.ai_family = AF_INET;
664 hints.ai_socktype = SOCK_STREAM; 664 hints.ai_socktype = SOCK_STREAM;
665 hints.ai_protocol = IPPROTO_TCP; 665 hints.ai_protocol = IPPROTO_TCP;
666 int status = getaddrinfo(host, port, &hints, &result); 666 int status = getaddrinfo(host, port, &hints, &result);
667 if (status != 0) { 667 if (status != 0) {
668 return false; 668 return false;
669 } 669 }
670 670
671 // Connect. 671 // Connect.
672 status = connect(socket_, result->ai_addr, result->ai_addrlen); 672 status = connect(socket_, result->ai_addr, result->ai_addrlen);
673 freeaddrinfo(result);
673 return status == 0; 674 return status == 0;
674 } 675 }
675 676
676 677
677 int MacOSSocket::Send(const char* data, int len) const { 678 int MacOSSocket::Send(const char* data, int len) const {
678 int status = send(socket_, data, len, 0); 679 int status = send(socket_, data, len, 0);
679 return status; 680 return status;
680 } 681 }
681 682
682 683
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 } 816 }
816 817
817 // This sampler is no longer the active sampler. 818 // This sampler is no longer the active sampler.
818 active_sampler_ = NULL; 819 active_sampler_ = NULL;
819 active_ = false; 820 active_ = false;
820 } 821 }
821 822
822 #endif // ENABLE_LOGGING_AND_PROFILING 823 #endif // ENABLE_LOGGING_AND_PROFILING
823 824
824 } } // namespace v8::internal 825 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform-linux.cc ('k') | src/platform-win32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698