Index: wp-includes/http.php
===================================================================
--- wp-includes/http.php	(revision 10553)
+++ wp-includes/http.php	(working copy)
@@ -1374,10 +1374,12 @@
 			$value = substr( $pairs[0], strpos( $pairs[0], '=' ) + 1 );
 			$this->name  = $name;
 			$this->value = urldecode( $value );
-			array_shift( $pairs );
+			array_shift( $pairs ); //Removes name=value from items.
 			
 			// Set everything else as a property
 			foreach ( $pairs as $pair ) {
+				if ( empty($pair) ) //Handles the cookie ending in ; which results in a empty final pair
+					continue;
 				list( $key, $val ) = explode( '=', $pair );
 				$key = strtolower( trim( $key ) );
 				if ( 'expires' == $key )
