Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 25385 | Differences between
and this patch

Collapse All | Expand All

(-)MemCachedClient.inc.php (-1 / +2 lines)
Lines 267-276 Link Here
267
			$host = $this->buckets[$hv % $this->bucketcount];
267
			$host = $this->buckets[$hv % $this->bucketcount];
268
			$sock = $this->sock_to_host($host);
268
			$sock = $this->sock_to_host($host);
269
269
270
			if($sock)
270
			if(is_resource($sock))
271
				return $sock;
271
				return $sock;
272
272
273
			$hv += $this->_hashfunc($tries);
273
			$hv += $this->_hashfunc($tries);
274
			$tries++;
274
		}
275
		}
275
276
276
		return null;
277
		return null;

Return to bug 25385