Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 353533
Collapse All | Expand All

(-)a/beagle/beagled/Server.cs (-3 / +3 lines)
Lines 462-470 namespace Beagle.Daemon { Link Here
462
			int bytes_read = 0;
462
			int bytes_read = 0;
463
463
464
			try {
464
			try {
465
				bytes_read = this.client.GetStream ().EndRead (ar);
465
				if (this.client != null)
466
					bytes_read = this.client.GetStream ().EndRead (ar);
466
			} catch (IOException e) {
467
			} catch (IOException e) {
467
				if (! (e.InnerException is SocketException))
468
				if (! (e.InnerException is SocketException) && e.Message != "Not connected")
468
					throw e;
469
					throw e;
469
			} catch (ObjectDisposedException) { }
470
			} catch (ObjectDisposedException) { }
470
471
471
- 

Return to bug 353533