### Eclipse Workspace Patch 1.0
#P wordpress-trunk
Index: wp-includes/http.php
===================================================================
--- wp-includes/http.php	(revision 17565)
+++ wp-includes/http.php	(working copy)
@@ -19,7 +19,7 @@
  *
  * @return WP_Http HTTP Transport object.
  */
-function &_wp_http_get_object() {
+function _wp_http_get_object() {
 	static $http;
 
 	if ( is_null($http) )
@@ -56,8 +56,7 @@
  * @return WP_Error|array The response or WP_Error on failure.
  */
 function wp_remote_request($url, $args = array()) {
-	$objFetchSite = _wp_http_get_object();
-	return $objFetchSite->request($url, $args);
+	return _wp_http_get_object()->request($url, $args);
 }
 
 /**
@@ -72,8 +71,7 @@
  * @return WP_Error|array The response or WP_Error on failure.
  */
 function wp_remote_get($url, $args = array()) {
-	$objFetchSite = _wp_http_get_object();
-	return $objFetchSite->get($url, $args);
+	return _wp_http_get_object()->get($url, $args);
 }
 
 /**
@@ -88,8 +86,7 @@
  * @return WP_Error|array The response or WP_Error on failure.
  */
 function wp_remote_post($url, $args = array()) {
-	$objFetchSite = _wp_http_get_object();
-	return $objFetchSite->post($url, $args);
+	return _wp_http_get_object()->post($url, $args);
 }
 
 /**
@@ -104,8 +101,7 @@
  * @return WP_Error|array The response or WP_Error on failure.
  */
 function wp_remote_head($url, $args = array()) {
-	$objFetchSite = _wp_http_get_object();
-	return $objFetchSite->head($url, $args);
+	return _wp_http_get_object()->head($url, $args);
 }
 
 /**
