summaryrefslogtreecommitdiff
path: root/cs/demo/Ice/throughput/Client.cs
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-11-14 13:21:04 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-11-14 13:21:04 +0000
commit5fc009f6d9fcae69185b8f5d52a9e545d79a0935 (patch)
tree4346f2ed7205e454704c9955f6c380c06661add4 /cs/demo/Ice/throughput/Client.cs
parentadding Glacier2.SessionManager.CloseCount (diff)
downloadice-5fc009f6d9fcae69185b8f5d52a9e545d79a0935.tar.bz2
ice-5fc009f6d9fcae69185b8f5d52a9e545d79a0935.tar.xz
ice-5fc009f6d9fcae69185b8f5d52a9e545d79a0935.zip
Fixed bug 591 - NullReferenceException
Diffstat (limited to 'cs/demo/Ice/throughput/Client.cs')
-rwxr-xr-xcs/demo/Ice/throughput/Client.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cs/demo/Ice/throughput/Client.cs b/cs/demo/Ice/throughput/Client.cs
index 8db4ca4f635..92321c302b5 100755
--- a/cs/demo/Ice/throughput/Client.cs
+++ b/cs/demo/Ice/throughput/Client.cs
@@ -66,6 +66,7 @@ public class Client : Ice.Application
StringDouble[] structSeq = new StringDouble[StringDoubleSeqSize.value];
for(int i = 0; i < StringDoubleSeqSize.value; ++i)
{
+ structSeq[i] = new StringDouble();
structSeq[i].s = "hello";
structSeq[i].d = 3.14;
}