2009-08-18 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Tue, 18 Aug 2009 03:41:12 +0000 (03:41 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Tue, 18 Aug 2009 03:41:12 +0000 (03:41 -0000)
* ReplyChannelBase.cs : initialize field.

svn path=/trunk/mcs/; revision=140123

mcs/class/System.ServiceModel/System.ServiceModel.Channels/ChangeLog
mcs/class/System.ServiceModel/System.ServiceModel.Channels/ReplyChannelBase.cs

index c77856f29d6e4afa73d352ad82fdbae52e99635f..807e7c34b4d6219a976f2f02213ebd2232de3048 100755 (executable)
@@ -1,3 +1,7 @@
+2009-08-18  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * ReplyChannelBase.cs : initialize field.
+
 2009-08-17  Atsushi Enomoto  <atsushi@ximian.com>
 
        * ReplyChannelBase.cs, DuplexChannelBase.cs, RequestChannelBase.cs:
index 135adc9a3cb2dd6b76cb0bf2c5a41896b5180f8a..80bf02ff27f1a1212a100036b8ce31e831233679 100644 (file)
@@ -57,6 +57,7 @@ namespace System.ServiceModel.Channels
                public ReplyChannelBase (ChannelListenerBase listener)
                        : base (listener)
                {
+                       this.listener = listener;
                }
 
                ChannelListenerBase listener;