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

Side by Side Diff: src/platform-freebsd.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 | « no previous file | src/platform-linux.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 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 hints.ai_family = AF_INET; 731 hints.ai_family = AF_INET;
732 hints.ai_socktype = SOCK_STREAM; 732 hints.ai_socktype = SOCK_STREAM;
733 hints.ai_protocol = IPPROTO_TCP; 733 hints.ai_protocol = IPPROTO_TCP;
734 int status = getaddrinfo(host, port, &hints, &result); 734 int status = getaddrinfo(host, port, &hints, &result);
735 if (status != 0) { 735 if (status != 0) {
736 return false; 736 return false;
737 } 737 }
738 738
739 // Connect. 739 // Connect.
740 status = connect(socket_, result->ai_addr, result->ai_addrlen); 740 status = connect(socket_, result->ai_addr, result->ai_addrlen);
741 freeaddrinfo(result);
741 return status == 0; 742 return status == 0;
742 } 743 }
743 744
744 745
745 int FreeBSDSocket::Send(const char* data, int len) const { 746 int FreeBSDSocket::Send(const char* data, int len) const {
746 int status = send(socket_, data, len, 0); 747 int status = send(socket_, data, len, 0);
747 return status; 748 return status;
748 } 749 }
749 750
750 751
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 } 884 }
884 885
885 // This sampler is no longer the active sampler. 886 // This sampler is no longer the active sampler.
886 active_sampler_ = NULL; 887 active_sampler_ = NULL;
887 active_ = false; 888 active_ = false;
888 } 889 }
889 890
890 #endif // ENABLE_LOGGING_AND_PROFILING 891 #endif // ENABLE_LOGGING_AND_PROFILING
891 892
892 } } // namespace v8::internal 893 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/platform-linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698